TypeScript/tests/baselines/reference/asiPreventsParsingAsNamespace03.symbols

20 lines
696 B
Plaintext
Raw Normal View History

2015-06-03 00:47:23 +02:00
=== tests/cases/conformance/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace03.ts ===
var namespace: number;
>namespace : Symbol(namespace, Decl(asiPreventsParsingAsNamespace03.ts, 1, 3))
var n: string;
>n : Symbol(n, Decl(asiPreventsParsingAsNamespace03.ts, 2, 3))
namespace container {
>container : Symbol(container, Decl(asiPreventsParsingAsNamespace03.ts, 2, 14))
namespace // this is the identifier 'namespace'
2015-06-03 21:05:53 +02:00
>namespace : Symbol(namespace, Decl(asiPreventsParsingAsNamespace03.ts, 1, 3))
2015-06-03 00:47:23 +02:00
n // this is the identifier 'n'
2015-06-03 21:05:53 +02:00
>n : Symbol(n, Decl(asiPreventsParsingAsNamespace03.ts, 2, 3))
2015-06-03 00:47:23 +02:00
{ } // this is a block body
}