TypeScript/tests/baselines/reference/asiPreventsParsingAsInterface03.symbols

18 lines
683 B
Plaintext
Raw Normal View History

2015-06-04 23:03:00 +02:00
=== tests/cases/conformance/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface03.ts ===
var interface: number, I: string;
>interface : Symbol(interface, Decl(asiPreventsParsingAsInterface03.ts, 1, 3))
>I : Symbol(I, Decl(asiPreventsParsingAsInterface03.ts, 1, 22))
namespace n {
>n : Symbol(n, Decl(asiPreventsParsingAsInterface03.ts, 1, 33))
interface // This should be the identifier 'interface'
2015-06-04 23:37:40 +02:00
>interface : Symbol(interface, Decl(asiPreventsParsingAsInterface03.ts, 1, 3))
2015-06-04 23:03:00 +02:00
I // This should be the identifier 'I'
2015-06-04 23:37:40 +02:00
>I : Symbol(I, Decl(asiPreventsParsingAsInterface03.ts, 1, 22))
2015-06-04 23:03:00 +02:00
{} // This should be a block body
}