zero-literal-segments.js (295B)
1 // Copyright (C) 2014 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 es6id: 21.1.2.4 5 description: > 6 If literalSegments ≤ 0, return the empty string. 7 ---*/ 8 9 assert.sameValue(String.raw``, ''); 10 11 reportCompare(0, 0);