TypeScript/tests/baselines/reference/sourceMapValidationWithComments.types

55 lines
1.4 KiB
Text

=== tests/cases/compiler/sourceMapValidationWithComments.ts ===
class DebugClass {
>DebugClass : DebugClass, Symbol(DebugClass,Decl(sourceMapValidationWithComments.ts,0,0))
public static debugFunc() {
>debugFunc : () => boolean, Symbol(DebugClass.debugFunc,Decl(sourceMapValidationWithComments.ts,0,18))
// Start Debugger Test Code
var i = 0;
>i : number, Symbol(i,Decl(sourceMapValidationWithComments.ts,5,11))
>0 : number
i++;
>i++ : number
>i : number, Symbol(i,Decl(sourceMapValidationWithComments.ts,5,11))
i++;
>i++ : number
>i : number, Symbol(i,Decl(sourceMapValidationWithComments.ts,5,11))
i++;
>i++ : number
>i : number, Symbol(i,Decl(sourceMapValidationWithComments.ts,5,11))
i++;
>i++ : number
>i : number, Symbol(i,Decl(sourceMapValidationWithComments.ts,5,11))
i++;
>i++ : number
>i : number, Symbol(i,Decl(sourceMapValidationWithComments.ts,5,11))
i++;
>i++ : number
>i : number, Symbol(i,Decl(sourceMapValidationWithComments.ts,5,11))
i++;
>i++ : number
>i : number, Symbol(i,Decl(sourceMapValidationWithComments.ts,5,11))
i++;
>i++ : number
>i : number, Symbol(i,Decl(sourceMapValidationWithComments.ts,5,11))
i++;
>i++ : number
>i : number, Symbol(i,Decl(sourceMapValidationWithComments.ts,5,11))
// End Debugger Test Code
return true;
>true : boolean
}
}