TypeScript/tests/baselines/reference/properties.symbols
2016-03-16 13:45:55 -07:00

19 lines
477 B
Plaintext

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