-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reset soft with master for single commit (#38720)
- Loading branch information
Noj Vek
authored
Jun 18, 2020
1 parent
c3c6be6
commit f697d26
Showing
43 changed files
with
815 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
//// [tests/cases/conformance/jsx/inline/inlineJsxAndJsxFragPragma.tsx] //// | ||
|
||
//// [renderer.d.ts] | ||
declare global { | ||
namespace JSX { | ||
interface IntrinsicElements { | ||
[e: string]: any; | ||
} | ||
} | ||
} | ||
export function h(): void; | ||
export function jsx(): void; | ||
export function Fragment(): void; | ||
|
||
//// [preacty.tsx] | ||
/** | ||
* @jsx h | ||
* @jsxFrag Fragment | ||
*/ | ||
import {h, Fragment} from "./renderer"; | ||
<><div></div></> | ||
|
||
//// [snabbdomy.tsx] | ||
/* @jsx jsx */ | ||
/* @jsxfrag null */ | ||
import {jsx} from "./renderer"; | ||
<><span></span></> | ||
|
||
//// [preacty.js] | ||
"use strict"; | ||
exports.__esModule = true; | ||
/** | ||
* @jsx h | ||
* @jsxFrag Fragment | ||
*/ | ||
var renderer_1 = require("./renderer"); | ||
renderer_1.h(renderer_1.Fragment, null, | ||
renderer_1.h("div", null)); | ||
//// [snabbdomy.js] | ||
"use strict"; | ||
exports.__esModule = true; | ||
/* @jsx jsx */ | ||
/* @jsxfrag null */ | ||
var renderer_1 = require("./renderer"); | ||
renderer_1.jsx(null, null, | ||
renderer_1.jsx("span", null)); |
Oops, something went wrong.