TypeScript/tests/baselines/reference/asiPreventsParsingAsInterface04.symbols

18 lines
816 B
Plaintext
Raw Normal View History

2015-06-04 23:03:00 +02:00
=== tests/cases/conformance/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface04.ts ===
var declare: boolean, interface: number, I: string;
>declare : Symbol(declare, Decl(asiPreventsParsingAsInterface04.ts, 1, 3))
>interface : Symbol(interface, Decl(asiPreventsParsingAsInterface04.ts, 1, 21))
2015-06-04 23:37:40 +02:00
>I : Symbol(I, Decl(asiPreventsParsingAsInterface04.ts, 1, 40))
2015-06-04 23:03:00 +02:00
declare // This should be the identifier 'declare'
>declare : Symbol(declare, Decl(asiPreventsParsingAsInterface04.ts, 1, 3))
interface // This should be the identifier 'interface'
2015-06-04 23:37:40 +02:00
>interface : Symbol(interface, Decl(asiPreventsParsingAsInterface04.ts, 1, 21))
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(asiPreventsParsingAsInterface04.ts, 1, 40))
2015-06-04 23:03:00 +02:00
{} // This should be a block body