summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Map/prototype/clear/context-is-not-object.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Map/prototype/clear/context-is-not-object.js')
-rw-r--r--js/src/tests/test262/built-ins/Map/prototype/clear/context-is-not-object.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Map/prototype/clear/context-is-not-object.js b/js/src/tests/test262/built-ins/Map/prototype/clear/context-is-not-object.js
new file mode 100644
index 0000000000..c0403d2159
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Map/prototype/clear/context-is-not-object.js
@@ -0,0 +1,40 @@
+// Copyright (C) 2015 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-map.prototype.clear
+description: >
+ Throws a TypeError if `this` is not an Object.
+info: |
+ Map.prototype.clear ( )
+
+ 1. Let M be the this value.
+ 2. If Type(M) is not Object, throw a TypeError exception.
+ ...
+features: [Symbol]
+---*/
+
+assert.throws(TypeError, function() {
+ Map.prototype.clear.call(1);
+});
+
+assert.throws(TypeError, function() {
+ Map.prototype.clear.call(true);
+});
+
+assert.throws(TypeError, function() {
+ Map.prototype.clear.call('');
+});
+
+assert.throws(TypeError, function() {
+ Map.prototype.clear.call(null);
+});
+
+assert.throws(TypeError, function() {
+ Map.prototype.clear.call(undefined);
+});
+
+assert.throws(TypeError, function() {
+ Map.prototype.clear.call(Symbol());
+});
+
+reportCompare(0, 0);