TypeScript/tests/baselines/reference/sourceMapValidationClassWithDefaultConstructor.symbols
2015-04-15 16:44:20 -07:00

11 lines
410 B
Plaintext

=== tests/cases/compiler/sourceMapValidationClassWithDefaultConstructor.ts ===
class Greeter {
>Greeter : Symbol(Greeter, Decl(sourceMapValidationClassWithDefaultConstructor.ts, 0, 0))
public a = 10;
>a : Symbol(a, Decl(sourceMapValidationClassWithDefaultConstructor.ts, 0, 15))
public nameA = "Ten";
>nameA : Symbol(nameA, Decl(sourceMapValidationClassWithDefaultConstructor.ts, 1, 18))
}