TypeScript/tests/baselines/reference/parserVariableDeclaration1.errors.txt

14 lines
401 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== 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'.