From ffae2ca863fa7ea2fdd5dba89f626e9e3dbb75a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bargull?= Date: Mon, 13 Apr 2015 20:53:44 +0200 Subject: [PATCH] Fix malformed YAML front matter --- .../class/definition/ClassMethod_restricted-properties.js | 2 +- test/language/object-literal/descriptor.js | 2 +- test/language/rest-parameters/arrow-function.js | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/test/language/class/definition/ClassMethod_restricted-properties.js b/test/language/class/definition/ClassMethod_restricted-properties.js index 28ed09e40c..856d3123cc 100644 --- a/test/language/class/definition/ClassMethod_restricted-properties.js +++ b/test/language/class/definition/ClassMethod_restricted-properties.js @@ -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%. diff --git a/test/language/object-literal/descriptor.js b/test/language/object-literal/descriptor.js index f633863ee2..beec08274f 100644 --- a/test/language/object-literal/descriptor.js +++ b/test/language/object-literal/descriptor.js @@ -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; diff --git a/test/language/rest-parameters/arrow-function.js b/test/language/rest-parameters/arrow-function.js index f1b04e9a2d..b7c922e33e 100644 --- a/test/language/rest-parameters/arrow-function.js +++ b/test/language/rest-parameters/arrow-function.js @@ -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;