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

13 lines
272 B
Plaintext

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