Updated a few baselines

This commit is contained in:
Ron Buckton 2016-03-30 17:41:03 -07:00
parent 78cdb2d902
commit fe13cdc7bd
2 changed files with 12 additions and 2 deletions

View File

@ -13,4 +13,14 @@ middle${
tail`;
//// [templateStringWithEmbeddedCommentsES6.js]
"head" + 10 + "\nmiddle" + 20 + "\ntail";
`head${ // single line comment
10}
middle${
/* Multi-
* line
* comment
*/
20
// closing comment
}
tail`;

View File

@ -6,7 +6,7 @@ function* gen {
//// [templateStringWithEmbeddedYieldKeyword.js]
function gen() {
function* gen() {
// Once this is supported, yield *must* be parenthesized.
var x = "abc" + (yield 10) + "def";
}