Specify esid tag in test templates

This commit is contained in:
Mike Pennisi 2016-04-18 13:33:43 -04:00
parent 43bce311db
commit d5190e96df
18 changed files with 18 additions and 0 deletions

View File

@ -3,6 +3,7 @@
/*---
path: language/expressions/arrow-function/dstr-
name: arrow function expression
esid: sec-arrow-function-definitions-runtime-semantics-evaluation
es6id: 14.2.16
info: |
ArrowFunction : ArrowParameters => ConciseBody

View File

@ -3,6 +3,7 @@
/*---
path: language/statements/class/dstr-gen-meth-static-
name: static class expression generator method
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
es6id: 14.5.15
info: |
ClassDeclaration : class BindingIdentifier ClassTail

View File

@ -3,6 +3,7 @@
/*---
path: language/statements/class/dstr-gen-meth-
name: class expression method
esid: sec-class-definitions-runtime-semantics-evaluation
es6id: 14.5.16
info: |
ClassDeclaration : class BindingIdentifier ClassTail

View File

@ -3,6 +3,7 @@
/*---
path: language/statements/class/dstr-meth-static-
name: static class expression method
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
es6id: 14.5.15
info: |
ClassDeclaration : class BindingIdentifier ClassTail

View File

@ -3,6 +3,7 @@
/*---
path: language/statements/class/dstr-meth-
name: class expression method
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
es6id: 14.5.15
info: |
ClassDeclaration : class BindingIdentifier ClassTail

View File

@ -3,6 +3,7 @@
/*---
path: language/expressions/class/dstr-gen-meth-static-
name: static class expression generator method
esid: sec-class-definitions-runtime-semantics-evaluation
es6id: 14.5.16
info: |
ClassExpression : class BindingIdentifieropt ClassTail

View File

@ -3,6 +3,7 @@
/*---
path: language/expressions/class/dstr-gen-meth-
name: class expression method
esid: sec-class-definitions-runtime-semantics-evaluation
es6id: 14.5.16
info: |
ClassExpression : class BindingIdentifieropt ClassTail

View File

@ -3,6 +3,7 @@
/*---
path: language/expressions/class/dstr-meth-static-
name: static class expression method
esid: sec-class-definitions-runtime-semantics-evaluation
es6id: 14.5.16
info: |
ClassExpression : class BindingIdentifieropt ClassTail

View File

@ -3,6 +3,7 @@
/*---
path: language/expressions/class/dstr-meth-
name: class expression method
esid: sec-class-definitions-runtime-semantics-evaluation
es6id: 14.5.16
info: |
ClassExpression : class BindingIdentifieropt ClassTail

View File

@ -4,6 +4,7 @@
path: language/statements/const/dstr-
name: >
`const` statement
esid: sec-let-and-const-declarations-runtime-semantics-evaluation
es6id: 13.3.1.4
info: |
LexicalBinding : BindingPattern Initializer

View File

@ -3,6 +3,7 @@
/*---
path: language/statements/function/dstr-
name: function declaration
esid: sec-function-definitions-runtime-semantics-instantiatefunctionobject
es6id: 14.1.19
info: |
FunctionDeclaration :

View File

@ -3,6 +3,7 @@
/*---
path: language/expressions/function/dstr-
name: function expression
esid: sec-function-definitions-runtime-semantics-evaluation
es6id: 14.1.20
info: |
FunctionExpression : function ( FormalParameters ) { FunctionBody }

View File

@ -3,6 +3,7 @@
/*---
path: language/statements/generators/dstr-
name: generator function declaration
esid: sec-generator-function-definitions-runtime-semantics-instantiatefunctionobject
es6id: 14.4.12
info: |
GeneratorDeclaration : function * ( FormalParameters ) { GeneratorBody }

View File

@ -3,6 +3,7 @@
/*---
path: language/expressions/generators/dstr-
name: generator function expression
esid: sec-generator-function-definitions-runtime-semantics-evaluation
es6id: 14.4.14
info: |
GeneratorExpression : function * ( FormalParameters ) { GeneratorBody }

View File

@ -3,6 +3,7 @@
/*---
path: language/expressions/object/dstr-gen-meth-
name: generator method
esid: sec-generator-function-definitions-runtime-semantics-propertydefinitionevaluation
es6id: 14.4.13
info: |
GeneratorMethod :

View File

@ -4,6 +4,7 @@
path: language/statements/let/dstr-
name: >
`let` statement
esid: sec-let-and-const-declarations-runtime-semantics-evaluation
es6id: 13.3.1.4
info: |
LexicalBinding : BindingPattern Initializer

View File

@ -3,6 +3,7 @@
/*---
path: language/expressions/object/dstr-meth-
name: method
esid: sec-runtime-semantics-definemethod
es6id: 14.3.8
info: |
MethodDefinition : PropertyName ( StrictFormalParameters ) { FunctionBody }

View File

@ -4,6 +4,7 @@
path: language/statements/variable/dstr-
name: >
`var` statement
esid: sec-variable-statement-runtime-semantics-evaluation
es6id: 13.3.2.4
info: |
VariableDeclaration : BindingPattern Initializer