target-is-not-object-throws.js (720B)
1 // Copyright (C) 2015 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 es6id: 26.1.13 5 description: > 6 Throws a TypeError if target is not an Object. 7 info: | 8 26.1.13 Reflect.set ( target, propertyKey, V [ , receiver ] ) 9 10 1. If Type(target) is not Object, throw a TypeError exception. 11 ... 12 features: [Reflect, Reflect.set] 13 ---*/ 14 15 assert.throws(TypeError, function() { 16 Reflect.set(1, 'p', 42); 17 }); 18 19 assert.throws(TypeError, function() { 20 Reflect.set(null, 'p', 42); 21 }); 22 23 assert.throws(TypeError, function() { 24 Reflect.set(undefined, 'p', 42); 25 }); 26 27 assert.throws(TypeError, function() { 28 Reflect.set('', 'p', 42); 29 }); 30 31 reportCompare(0, 0);