We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31d5450 commit f585289Copy full SHA for f585289
tests/compiler/resolve-nested.ts
@@ -11,4 +11,8 @@ export function c(arg: Outer.Inner): void { }
11
export namespace Wrapped {
12
class D {}
13
export function e(c: D): void {}
14
+ export namespace Inner {
15
+ export class F {}
16
+ }
17
+ var f: Inner.F;
18
}
tests/compiler/resolve-nested.untouched.wat
@@ -6,6 +6,7 @@
6
(table $0 1 funcref)
7
(elem (i32.const 0) $null)
8
(global $resolve-nested/a i32 (i32.const 0))
9
+ (global $resolve-nested/Wrapped.f (mut i32) (i32.const 0))
10
(global $~lib/memory/HEAP_BASE i32 (i32.const 8))
(export "memory" (memory $0))
(export "table" (table $0))
0 commit comments