File: typeFromPropertyAssignment20.symbols

package info (click to toggle)
node-typescript 5.0.4%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 459,116 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (37 lines) | stat: -rw-r--r-- 1,604 bytes parent folder | download | duplicates (4)
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
26
27
28
29
30
31
32
33
34
35
36
37
=== tests/cases/conformance/salsa/bluebird.js ===
!function outer (f) { return f }(
>outer : Symbol(outer, Decl(bluebird.js, 0, 1))
>f : Symbol(f, Decl(bluebird.js, 0, 17))
>f : Symbol(f, Decl(bluebird.js, 0, 17))

    function inner () {
>inner : Symbol(inner, Decl(bluebird.js, 0, 33))

        function Async() {
>Async : Symbol(Async, Decl(bluebird.js, 1, 23))

            this._trampolineEnabled = true;
>this._trampolineEnabled : Symbol(Async._trampolineEnabled, Decl(bluebird.js, 2, 26), Decl(bluebird.js, 7, 20))
>this : Symbol(Async, Decl(bluebird.js, 1, 23))
>_trampolineEnabled : Symbol(Async._trampolineEnabled, Decl(bluebird.js, 2, 26), Decl(bluebird.js, 7, 20))
        }

        Async.prototype.disableTrampolineIfNecessary = function dtin(b) {
>Async.prototype : Symbol(Async.disableTrampolineIfNecessary, Decl(bluebird.js, 4, 9))
>Async : Symbol(Async, Decl(bluebird.js, 1, 23))
>prototype : Symbol(Function.prototype, Decl(lib.es5.d.ts, --, --))
>disableTrampolineIfNecessary : Symbol(Async.disableTrampolineIfNecessary, Decl(bluebird.js, 4, 9))
>dtin : Symbol(dtin, Decl(bluebird.js, 6, 54))
>b : Symbol(b, Decl(bluebird.js, 6, 69))

            if (b) {
>b : Symbol(b, Decl(bluebird.js, 6, 69))

                this._trampolineEnabled = false;
>this._trampolineEnabled : Symbol(Async._trampolineEnabled, Decl(bluebird.js, 2, 26), Decl(bluebird.js, 7, 20))
>this : Symbol(Async, Decl(bluebird.js, 1, 23))
>_trampolineEnabled : Symbol(Async._trampolineEnabled, Decl(bluebird.js, 2, 26), Decl(bluebird.js, 7, 20))
            }
        };
    })