cptn-nrml-empty-block.js (404B)
1 // Copyright (C) 2016 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 info: | 5 If Result(3).type is normal and its completion value is empty, then return 6 the value undefined 7 esid: sec-performeval 8 es5id: 15.1.2.1_A3.2_T1 9 description: Block statement 10 ---*/ 11 12 assert.sameValue((0,eval)("{}"), undefined); 13 14 reportCompare(0, 0);