Index: test/mjsunit/strict-mode.js |
diff --git a/test/mjsunit/strict-mode.js b/test/mjsunit/strict-mode.js |
index 924b34f936c274684e0e3cc2921b2563fb76aa05..87a4be8f0149e49d494c9b7e98d6bd345c4d98c3 100644 |
--- a/test/mjsunit/strict-mode.js |
+++ b/test/mjsunit/strict-mode.js |
@@ -115,3 +115,24 @@ function NotStrict(eval) { |
} |
with ({}) {}; |
} |
+ |
+// Duplicate data properties. |
+CheckStrictMode("var x = { dupe : 1, nondupe: 3, dupe : 2 };", SyntaxError) |
+CheckStrictMode("var x = { '1234' : 1, '2345' : 2, '1234' : 3 };", SyntaxError) |
+CheckStrictMode("var x = { '1234' : 1, '2345' : 2, 1234 : 3 };", SyntaxError) |
+CheckStrictMode("var x = { 3.14 : 1, 2.71 : 2, 3.14 : 3 };", SyntaxError) |
+CheckStrictMode("var x = { 3.14 : 1, '3.14' : 2};", SyntaxError) |
+ |
Lasse Reichstein
2011/01/25 11:19:03
For good measure, try with
var x = {123: 1, "0123
Lasse Reichstein
2011/01/25 11:19:03
Also try get/set properties using strings and numb
Martin Maly
2011/01/25 18:29:23
Done.
Martin Maly
2011/01/25 18:29:23
Done.
|
+// Two getters (non-strict) |
+assertThrows("var x = { get foo() { }, get foo() { } };", SyntaxError) |
+ |
+// Two setters (non-strict) |
+assertThrows("var x = { set foo(v) { }, set foo(v) { } };", SyntaxError) |
+ |
+// Setter and data (non-strict) |
+assertThrows("var x = { foo: 'data', set foo(v) { } };", SyntaxError) |
+assertThrows("var x = { set foo(v) { }, foo: 'data' };", SyntaxError) |
+ |
+// Getter and data (non-strict) |
+assertThrows("var x = { foo: 'data', get foo() { } };", SyntaxError) |
+assertThrows("var x = { get foo() { }, foo: 'data' };", SyntaxError) |