summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/ThrowTypeError/prototype.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/ThrowTypeError/prototype.js')
-rw-r--r--js/src/tests/test262/built-ins/ThrowTypeError/prototype.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/ThrowTypeError/prototype.js b/js/src/tests/test262/built-ins/ThrowTypeError/prototype.js
new file mode 100644
index 0000000000..eca4cda299
--- /dev/null
+++ b/js/src/tests/test262/built-ins/ThrowTypeError/prototype.js
@@ -0,0 +1,29 @@
+// Copyright (C) 2016 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-%throwtypeerror%
+description: >
+ The value of the [[Prototype]] internal slot of %ThrowTypeError% is the
+ intrinsic object %FunctionPrototype%.
+info: |
+ 8.2.2 CreateIntrinsics ( realmRec )
+
+ ...
+ 6. Let thrower be CreateBuiltinFunction(realmRec, throwerSteps, null).
+ 7. Set intrinsics.[[%ThrowTypeError%]] to thrower.
+ 8. Let noSteps be an empty sequence of algorithm steps.
+ 9. Let funcProto be CreateBuiltinFunction(realmRec, noSteps, objProto).
+ 10. Set intrinsics.[[%FunctionPrototype%]] to funcProto.
+ 11. Call thrower.[[SetPrototypeOf]](funcProto).
+ ...
+---*/
+
+var ThrowTypeError = Object.getOwnPropertyDescriptor(function() {
+ "use strict";
+ return arguments;
+}(), "callee").get;
+
+assert.sameValue(Object.getPrototypeOf(ThrowTypeError), Function.prototype);
+
+reportCompare(0, 0);