TypeScript/tests/baselines/reference/sourceMapValidationWithComments.types

56 lines
1.5 KiB
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/sourceMapValidationWithComments.ts ===
class DebugClass {
2015-04-13 23:01:57 +02:00
>DebugClass : DebugClass, Symbol(DebugClass, Decl(sourceMapValidationWithComments.ts, 0, 0))
2014-08-15 23:33:16 +02:00
public static debugFunc() {
2015-04-13 23:01:57 +02:00
>debugFunc : () => boolean, Symbol(DebugClass.debugFunc, Decl(sourceMapValidationWithComments.ts, 0, 18))
2014-08-15 23:33:16 +02:00
// Start Debugger Test Code
var i = 0;
2015-04-13 23:01:57 +02:00
>i : number, Symbol(i, Decl(sourceMapValidationWithComments.ts, 5, 11))
2015-04-13 21:36:11 +02:00
>0 : number
2014-08-15 23:33:16 +02:00
i++;
>i++ : number
2015-04-13 23:01:57 +02:00
>i : number, Symbol(i, Decl(sourceMapValidationWithComments.ts, 5, 11))
2014-08-15 23:33:16 +02:00
i++;
>i++ : number
2015-04-13 23:01:57 +02:00
>i : number, Symbol(i, Decl(sourceMapValidationWithComments.ts, 5, 11))
2014-08-15 23:33:16 +02:00
i++;
>i++ : number
2015-04-13 23:01:57 +02:00
>i : number, Symbol(i, Decl(sourceMapValidationWithComments.ts, 5, 11))
2014-08-15 23:33:16 +02:00
i++;
>i++ : number
2015-04-13 23:01:57 +02:00
>i : number, Symbol(i, Decl(sourceMapValidationWithComments.ts, 5, 11))
2014-08-15 23:33:16 +02:00
i++;
>i++ : number
2015-04-13 23:01:57 +02:00
>i : number, Symbol(i, Decl(sourceMapValidationWithComments.ts, 5, 11))
2014-08-15 23:33:16 +02:00
i++;
>i++ : number
2015-04-13 23:01:57 +02:00
>i : number, Symbol(i, Decl(sourceMapValidationWithComments.ts, 5, 11))
2014-08-15 23:33:16 +02:00
i++;
>i++ : number
2015-04-13 23:01:57 +02:00
>i : number, Symbol(i, Decl(sourceMapValidationWithComments.ts, 5, 11))
2014-08-15 23:33:16 +02:00
i++;
>i++ : number
2015-04-13 23:01:57 +02:00
>i : number, Symbol(i, Decl(sourceMapValidationWithComments.ts, 5, 11))
2014-08-15 23:33:16 +02:00
i++;
>i++ : number
2015-04-13 23:01:57 +02:00
>i : number, Symbol(i, Decl(sourceMapValidationWithComments.ts, 5, 11))
2014-08-15 23:33:16 +02:00
// End Debugger Test Code
return true;
2015-04-13 21:36:11 +02:00
>true : boolean
2014-08-15 23:33:16 +02:00
}
}