TypeScript/tests/baselines/reference/stripInternal1.types

13 lines
299 B
Plaintext
Raw Normal View History

=== tests/cases/compiler/stripInternal1.ts ===
class C {
2015-04-13 23:01:57 +02:00
>C : C, Symbol(C, Decl(stripInternal1.ts, 0, 0))
foo(): void { }
2015-04-13 23:01:57 +02:00
>foo : () => void, Symbol(foo, Decl(stripInternal1.ts, 1, 9))
// @internal
bar(): void { }
2015-04-13 23:01:57 +02:00
>bar : () => void, Symbol(bar, Decl(stripInternal1.ts, 2, 17))
}