Home | History | Annotate | Download | only in Scope

Lines Matching defs:with

6 * compliance with the License. You may obtain a copy of the License at
29 * decision by deleting the provisions above and replace them with the notice
38 * SUMMARY: Testing |with (x) {function f() {}}| when |x.f| already exists
42 * a |with| statement cannot be used to define one. See, for example,
48 * However, if |x| already has a property |f|, a |with| statement can be
51 * with (x) {f = 1;}
55 * with (x) {var f = 1;}
59 * with (x) {function f() {}}
68 var summary = 'Testing |with (x) {function f() {}}| when |x.f| already exists';
78 with (x)
87 with (x)
97 * Use of a function statement under the with-block should not affect
100 with (x)
120 with (x)