1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
=== tests/cases/conformance/jsx/file.tsx ===
declare module JSX {
>JSX : Symbol(JSX, Decl(file.tsx, 0, 0))
interface Element { }
>Element : Symbol(Element, Decl(file.tsx, 0, 20))
interface IntrinsicElements {
>IntrinsicElements : Symbol(IntrinsicElements, Decl(file.tsx, 1, 22))
[s: string]: any;
>s : Symbol(s, Decl(file.tsx, 3, 3))
}
}
var m = <div x-y="val"></div>;
>m : Symbol(m, Decl(file.tsx, 7, 3))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
>x-y : Symbol(x-y, Decl(file.tsx, 7, 12))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
var n = <div xx-y="val"></div>;
>n : Symbol(n, Decl(file.tsx, 8, 3))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
>xx-y : Symbol(xx-y, Decl(file.tsx, 8, 12))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
var o = <div x-yy="val"></div>;
>o : Symbol(o, Decl(file.tsx, 9, 3))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
>x-yy : Symbol(x-yy, Decl(file.tsx, 9, 12))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
var p = <div xx-yy="val"></div>;
>p : Symbol(p, Decl(file.tsx, 10, 3))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
>xx-yy : Symbol(xx-yy, Decl(file.tsx, 10, 12))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
// Investigation
var a = <div x="val"></div>;
>a : Symbol(a, Decl(file.tsx, 13, 3))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
>x : Symbol(x, Decl(file.tsx, 13, 12))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
var b = <div xx="val"></div>;
>b : Symbol(b, Decl(file.tsx, 14, 3))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
>xx : Symbol(xx, Decl(file.tsx, 14, 12))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
var c = <div xxx="val"></div>;
>c : Symbol(c, Decl(file.tsx, 15, 3))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
>xxx : Symbol(xxx, Decl(file.tsx, 15, 12))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
var d = <div xxxx="val"></div>;
>d : Symbol(d, Decl(file.tsx, 16, 3))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
>xxxx : Symbol(xxxx, Decl(file.tsx, 16, 12))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
var e = <div xxxxx="val"></div>;
>e : Symbol(e, Decl(file.tsx, 17, 3))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
>xxxxx : Symbol(xxxxx, Decl(file.tsx, 17, 12))
>div : Symbol(JSX.IntrinsicElements, Decl(file.tsx, 1, 22))
|