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

19 lines
461 B
Plaintext

=== tests/cases/compiler/properties.ts ===
class MyClass
>MyClass : Symbol(MyClass, Decl(properties.ts, 0, 0))
{
public get Count(): number
>Count : Symbol(Count, Decl(properties.ts, 2, 1), Decl(properties.ts, 6, 5))
{
return 42;
}
public set Count(value: number)
>Count : Symbol(Count, Decl(properties.ts, 2, 1), Decl(properties.ts, 6, 5))
>value : Symbol(value, Decl(properties.ts, 8, 21))
{
//
}
}