TypeScript/tests/baselines/reference/jsxParsingError1.errors.txt
Ryan Cavanaugh 51c547428b Parse JSX attributes as AssignmentExpressions
We should issue an error when parsing `<div x={1, 2} />` as the comma operator is not a legal production in a JSX Expression

Fixes (mitigates?) bug #5991
2015-12-08 09:53:47 -08:00

25 lines
885 B
Plaintext

tests/cases/conformance/jsx/file.tsx(12,36): error TS1005: '}' expected.
tests/cases/conformance/jsx/file.tsx(12,44): error TS1003: Identifier expected.
tests/cases/conformance/jsx/file.tsx(12,46): error TS1161: Unterminated regular expression literal.
==== tests/cases/conformance/jsx/file.tsx (3 errors) ====
declare module JSX {
interface Element { }
interface IntrinsicElements {
[s: string]: any;
}
}
// This should be a parse error
const class1 = "foo";
const class2 = "bar";
const elem = <div className={class1, class2}/>;
~
!!! error TS1005: '}' expected.
~
!!! error TS1003: Identifier expected.
!!! error TS1161: Unterminated regular expression literal.