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
|
=== tests/cases/compiler/propertyAccessExpressionInnerComments.ts ===
/*1*/Array/*2*/./*3*/toString/*4*/
>Array/*2*/./*3*/toString : Symbol(Function.toString, Decl(lib.es5.d.ts, --, --))
>Array : Symbol(Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
>toString : Symbol(Function.toString, Decl(lib.es5.d.ts, --, --))
/*1*/Array
>Array/*2*/./*3*/ // Single-line comment toString : Symbol(Function.toString, Decl(lib.es5.d.ts, --, --))
>Array : Symbol(Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
/*2*/./*3*/
// Single-line comment
toString/*4*/
>toString : Symbol(Function.toString, Decl(lib.es5.d.ts, --, --))
/*1*/Array/*2*/./*3*/
>Array/*2*/./*3*/ // Single-line comment toString : Symbol(Function.toString, Decl(lib.es5.d.ts, --, --))
>Array : Symbol(Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
// Single-line comment
toString/*4*/
>toString : Symbol(Function.toString, Decl(lib.es5.d.ts, --, --))
/*1*/Array
>Array // Single-line comment /*2*/./*3*/toString : Symbol(Function.toString, Decl(lib.es5.d.ts, --, --))
>Array : Symbol(Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
// Single-line comment
/*2*/./*3*/toString/*4*/
>toString : Symbol(Function.toString, Decl(lib.es5.d.ts, --, --))
|