summaryrefslogtreecommitdiff
path: root/test/built-ins/ThrowTypeError/forbidden-caller.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/ThrowTypeError/forbidden-caller.js')
-rw-r--r--test/built-ins/ThrowTypeError/forbidden-caller.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/built-ins/ThrowTypeError/forbidden-caller.js b/test/built-ins/ThrowTypeError/forbidden-caller.js
index e2d7bece1..6aa2fb62c 100644
--- a/test/built-ins/ThrowTypeError/forbidden-caller.js
+++ b/test/built-ins/ThrowTypeError/forbidden-caller.js
@@ -25,6 +25,9 @@ info: |
properties.
---*/
-var ThrowTypeError = Object.getOwnPropertyDescriptor(function(){ "use strict"; return arguments; }(), "callee").get;
+var ThrowTypeError = Object.getOwnPropertyDescriptor(function() {
+ "use strict";
+ return arguments;
+}(), "callee").get;
assert.sameValue(Object.prototype.hasOwnProperty.call(ThrowTypeError, "caller"), false);