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

15 lines
721 B
Plaintext
Raw Normal View History

==== tests/cases/conformance/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration3.ts (4 errors) ====
2014-07-13 01:04:16 +02:00
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'.
~~~~~~~~~~
2014-07-13 01:04:16 +02:00
!!! Cannot find name 'TypeScript'.
, code;
}