TypeScript/tests/baselines/reference/parserVariableDeclaration3.errors.txt
Anders Hejlsberg 8199b0b236 Pull model for contextual types.
New baselines reflect a couple of unrelated bug fixes.
2014-07-29 18:21:16 -07:00

15 lines
721 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration3.ts (4 errors) ====
function runTests() {
var outfile = new Harness.Compiler.WriterAggregator()
~~~~~~~
!!! Cannot find name 'Harness'.
, outerr = new Harness.Compiler.WriterAggregator()
~~~~~~~
!!! Cannot find name 'Harness'.
, compiler = <TypeScript.TypeScriptCompiler>new TypeScript.TypeScriptCompiler(outerr)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! Cannot find name 'TypeScript'.
~~~~~~~~~~
!!! Cannot find name 'TypeScript'.
, code;
}