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

13 lines
276 B
Plaintext

=== tests/cases/compiler/stripInternal1.ts ===
class C {
>C : Symbol(C, Decl(stripInternal1.ts, 0, 0))
foo(): void { }
>foo : Symbol(C.foo, Decl(stripInternal1.ts, 1, 9))
// @internal
bar(): void { }
>bar : Symbol(C.bar, Decl(stripInternal1.ts, 2, 17))
}