summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/freeze/15.2.3.9-2-a-6.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/freeze/15.2.3.9-2-a-6.js')
-rw-r--r--test/built-ins/Object/freeze/15.2.3.9-2-a-6.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/built-ins/Object/freeze/15.2.3.9-2-a-6.js b/test/built-ins/Object/freeze/15.2.3.9-2-a-6.js
index 3f5bb5c03..6295b1f08 100644
--- a/test/built-ins/Object/freeze/15.2.3.9-2-a-6.js
+++ b/test/built-ins/Object/freeze/15.2.3.9-2-a-6.js
@@ -12,22 +12,22 @@ includes: [propertyHelper.js]
var proto = {};
Object.defineProperty(proto, "foo", {
- get: function () {
- return 0;
- },
- configurable: true
+ get: function() {
+ return 0;
+ },
+ configurable: true
});
-var Con = function () { };
+var Con = function() {};
Con.prototype = proto;
var child = new Con();
Object.defineProperty(child, "foo", {
- get: function () {
- return 10;
- },
- configurable: true
+ get: function() {
+ return 10;
+ },
+ configurable: true
});
Object.freeze(child);