author | sundar |
Wed, 06 May 2015 20:04:42 +0530 | |
changeset 30394 | 72a59e4dffea |
parent 25247 | c0f911459863 |
permissions | -rw-r--r-- |
25247
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
1 |
/* |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
2 |
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
4 |
* |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
8 |
* |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
13 |
* accompanied this code). |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
14 |
* |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
18 |
* |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
21 |
* questions. |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
22 |
*/ |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
23 |
|
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
24 |
/** |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
25 |
* JDK-8046013: TypeError: Cannot apply "with" to non script object |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
26 |
* |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
27 |
* @test |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
28 |
* @run |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
29 |
*/ |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
30 |
|
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
31 |
var obj = loadWithNewGlobal({ |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
32 |
script: "({ f: 33 })", |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
33 |
name: "test" |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
34 |
}); |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
35 |
|
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
36 |
with (obj) { |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
37 |
print("f = " + f); |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
38 |
} |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
39 |
|
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
40 |
var obj2 = loadWithNewGlobal({ |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
41 |
script: "var obj = Object.create({ foo: 42 }); obj.bar = 'hello'; obj", |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
42 |
name: "test2" |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
43 |
}); |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
44 |
|
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
45 |
with (obj2) { |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
46 |
print("foo = " + foo); |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
47 |
print("bar = " + bar); |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
48 |
} |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
49 |
|
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
50 |
var obj3 = loadWithNewGlobal({ |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
51 |
script: "({ f: 33, func: function() { print('this.f =', this.f); } })", |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
52 |
name: "test" |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
53 |
}); |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
54 |
|
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
55 |
with(obj3) { |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
56 |
func(); |
c0f911459863
8046013: TypeError: Cannot apply "with" to non script object
sundar
parents:
diff
changeset
|
57 |
} |