Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: test/mjsunit/harmony/templates.js

Issue 768203002: Simplify template literal raw string creation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« src/parser.cc ('K') | « src/parser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --harmony-templates 5 // Flags: --harmony-templates
6 6
7 var num = 5; 7 var num = 5;
8 var str = "str"; 8 var str = "str";
9 function fn() { return "result"; } 9 function fn() { return "result"; }
10 var obj = { 10 var obj = {
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 421
422 (function testExtendedArrayPrototype() { 422 (function testExtendedArrayPrototype() {
423 Object.defineProperty(Array.prototype, 0, { 423 Object.defineProperty(Array.prototype, 0, {
424 set: function() { 424 set: function() {
425 assertUnreachable(); 425 assertUnreachable();
426 } 426 }
427 }); 427 });
428 function tag(){} 428 function tag(){}
429 tag`a${1}b`; 429 tag`a${1}b`;
430 })(); 430 })();
431
432
433 (function testRawLineNormalization() {
434 function raw0(callSiteObj) {
435 return callSiteObj.raw[0];
436 }
437 assertEquals(eval("raw0`\r`"), "\n");
438 assertEquals(eval("raw0`\r\n`"), "\n");
439 assertEquals(eval("raw0`\r\r\n`"), "\n\n");
440 assertEquals(eval("raw0`\r\n\r\n`"), "\n\n");
441 assertEquals(eval("raw0`\r\r\r\n`"), "\n\n\n");
442 })();
OLDNEW
« src/parser.cc ('K') | « src/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698