TypeScript/tests/baselines/reference/stripInternal1.types
2015-04-13 14:29:37 -07:00

13 lines
299 B
Plaintext

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