1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
=== tests/cases/compiler/keywordInJsxIdentifier.tsx ===
declare var React: any;
>React : Symbol(React, Decl(keywordInJsxIdentifier.tsx, 0, 11))
<foo class-id/>;
>class-id : Symbol(class-id, Decl(keywordInJsxIdentifier.tsx, 1, 4))
<foo class/>;
>class : Symbol(class, Decl(keywordInJsxIdentifier.tsx, 2, 4))
<foo class-id="1"/>;
>class-id : Symbol(class-id, Decl(keywordInJsxIdentifier.tsx, 3, 4))
<foo class="1"/>;
>class : Symbol(class, Decl(keywordInJsxIdentifier.tsx, 4, 4))
|