cptn-nrml-empty-var.js (409B)
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, 6 then return the value undefined 7 esid: sec-performeval 8 es5id: 15.1.2.1_A3.2_T2 9 description: Var statement 10 ---*/ 11 12 assert.sameValue((0,eval)("var x = 1"), undefined); 13 14 reportCompare(0, 0);