summaryrefslogtreecommitdiff
path: root/test/built-ins/ThrowTypeError/prototype.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/ThrowTypeError/prototype.js')
-rw-r--r--test/built-ins/ThrowTypeError/prototype.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/built-ins/ThrowTypeError/prototype.js b/test/built-ins/ThrowTypeError/prototype.js
index 4ad20323b..fcb92f431 100644
--- a/test/built-ins/ThrowTypeError/prototype.js
+++ b/test/built-ins/ThrowTypeError/prototype.js
@@ -19,6 +19,9 @@ info: |
...
---*/
-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.getPrototypeOf(ThrowTypeError), Function.prototype);