File: innerFunc.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (25 lines) | stat: -rw-r--r-- 618 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
=== tests/cases/compiler/innerFunc.ts ===
function salt() {
>salt : Symbol(salt, Decl(innerFunc.ts, 0, 0))

  function pepper() { return 5;}
>pepper : Symbol(pepper, Decl(innerFunc.ts, 0, 17))

  return pepper();  
>pepper : Symbol(pepper, Decl(innerFunc.ts, 0, 17))
}

module M {
>M : Symbol(M, Decl(innerFunc.ts, 3, 1))

    export function tungsten() {
>tungsten : Symbol(tungsten, Decl(innerFunc.ts, 5, 10))

        function oxygen() { return 6; };
>oxygen : Symbol(oxygen, Decl(innerFunc.ts, 6, 32))

        return oxygen();
>oxygen : Symbol(oxygen, Decl(innerFunc.ts, 6, 32))
    }
}