TypeScript/tests/baselines/reference/parserVariableDeclaration1.errors.txt
2014-07-12 17:30:19 -07:00

14 lines
401 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration1.ts (4 errors) ====
var selection = a,
~
!!! Cannot find name 'a'.
position = b,
~
!!! Cannot find name 'b'.
model = c,
~
!!! Cannot find name 'c'.
support = d;
~
!!! Cannot find name 'd'.