TypeScript/tests/baselines/reference/sourceMapValidationClassWithDefaultConstructor.types

13 lines
466 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/sourceMapValidationClassWithDefaultConstructor.ts ===
class Greeter {
2015-04-13 23:01:57 +02:00
>Greeter : Greeter, Symbol(Greeter, Decl(sourceMapValidationClassWithDefaultConstructor.ts, 0, 0))
2014-08-15 23:33:16 +02:00
public a = 10;
2015-04-13 23:01:57 +02:00
>a : number, Symbol(a, Decl(sourceMapValidationClassWithDefaultConstructor.ts, 0, 15))
2015-04-13 21:36:11 +02:00
>10 : number
2014-08-15 23:33:16 +02:00
public nameA = "Ten";
2015-04-13 23:01:57 +02:00
>nameA : string, Symbol(nameA, Decl(sourceMapValidationClassWithDefaultConstructor.ts, 1, 18))
2015-04-13 21:36:11 +02:00
>"Ten" : string
2014-08-15 23:33:16 +02:00
}