File: parserVariableDeclaration3.errors.txt

package info (click to toggle)
node-typescript 5.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 497,488 kB
  • sloc: javascript: 2,107,274; makefile: 6; sh: 1
file content (21 lines) | stat: -rw-r--r-- 1,034 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
parserVariableDeclaration3.ts(2,23): error TS2304: Cannot find name 'Harness'.
parserVariableDeclaration3.ts(3,22): error TS2304: Cannot find name 'Harness'.
parserVariableDeclaration3.ts(4,21): error TS2503: Cannot find namespace 'TypeScript'.
parserVariableDeclaration3.ts(4,55): error TS2304: Cannot find name 'TypeScript'.


==== parserVariableDeclaration3.ts (4 errors) ====
    function runTests() {
        var outfile = new Harness.Compiler.WriterAggregator()
                          ~~~~~~~
!!! error TS2304: Cannot find name 'Harness'.
          , outerr = new Harness.Compiler.WriterAggregator()
                         ~~~~~~~
!!! error TS2304: Cannot find name 'Harness'.
          , compiler = <TypeScript.TypeScriptCompiler>new TypeScript.TypeScriptCompiler(outerr)
                        ~~~~~~~~~~
!!! error TS2503: Cannot find namespace 'TypeScript'.
                                                          ~~~~~~~~~~
!!! error TS2304: Cannot find name 'TypeScript'.
          , code;
    }