File: importDeclarationNotCheckedAsValueWhenTargetNonValue.symbols

package info (click to toggle)
node-typescript 5.0.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 459,140 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (45 lines) | stat: -rw-r--r-- 1,522 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
38
39
40
41
42
43
44
45
=== tests/cases/compiler/file.d.ts ===
declare namespace dojox {
>dojox : Symbol(dojox, Decl(file.d.ts, 0, 0))

    namespace charting {
>charting : Symbol(charting, Decl(file.d.ts, 0, 25))

        namespace axis2d {
>axis2d : Symbol(axis2d, Decl(file.d.ts, 1, 24))

            export class Val { }
>Val : Symbol(Val, Decl(file.d.ts, 2, 26))

            interface common {
>common : Symbol(common, Decl(file.d.ts, 3, 32), Decl(file.d.ts, 6, 13))

                createText: object;
>createText : Symbol(common.createText, Decl(file.d.ts, 4, 30))
            }
            namespace common {
>common : Symbol(common, Decl(file.d.ts, 3, 32), Decl(file.d.ts, 6, 13))

                interface createText {
>createText : Symbol(createText, Decl(file.d.ts, 7, 30))

                    gfx(): string
>gfx : Symbol(createText.gfx, Decl(file.d.ts, 8, 38))
                }
            }
        }
    }
}
declare module "dojox/charting/axis2d/common.createText" {
>"dojox/charting/axis2d/common.createText" : Symbol("dojox/charting/axis2d/common.createText", Decl(file.d.ts, 14, 1))

    import exp = dojox.charting.axis2d.common
>exp : Symbol(exp, Decl(file.d.ts, 15, 58))
>dojox : Symbol(dojox, Decl(file.d.ts, 0, 0))
>charting : Symbol(dojox.charting, Decl(file.d.ts, 0, 25))
>axis2d : Symbol(dojox.charting.axis2d, Decl(file.d.ts, 1, 24))
>common : Symbol(exp, Decl(file.d.ts, 3, 32), Decl(file.d.ts, 6, 13))

    export = exp;
>exp : Symbol(exp, Decl(file.d.ts, 15, 58))
}