1 This page tests issues of scope with nested functions.
5 PASS: typeof f should be function and is.
6 PASS: typeof f.f1 should be undefined and is.
8 After parsing f, but before calling f:
10 PASS: typeof f should be function and is.
11 PASS: typeof f.f1 should be undefined and is.
15 PASS: typeof f should be function and is.
16 PASS: typeof f1 should be function and is.
17 PASS: typeof f.f1 should be undefined and is.
18 PASS: typeof x should be number and is.
19 PASS: typeof y should be undefined and is.