Merge pull request #225 from anba/malformed-yaml

Fix malformed YAML front matter
This commit is contained in:
Rick Waldron 2015-04-13 14:58:19 -04:00
commit c5c2078a3b
3 changed files with 4 additions and 3 deletions

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
description: >
Functions created using MethodDefinition syntactic form do not
have own properties "caller" or "arguments", but inherit them from
%FunctionPrototype%.

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 12.2.5
desciption: >
description: >
object literal property shorthand desciptor defaults
---*/
var x = 1;

View File

@ -2,7 +2,8 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 14.1
description: >arrow functions
description: >
arrow functions
includes: [compareArray.js]
---*/
var fn = (a, b, ...c) => c;