Fix frontmatter tags (#936)

This commit is contained in:
Leo Balter 2017-03-27 16:22:59 -04:00 committed by GitHub
parent 89160ff5b7
commit 882b3cc0d0
6 changed files with 54 additions and 30 deletions

View File

@ -1,8 +1,11 @@
// Copyright 2017 Tooru Fujisawa. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
author: Tooru Fujisawa [:arai] <arai_a@mac.com> author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending esid: pending
description: execution order for yield* with async iterator and next() description: execution order for yield* with async iterator and next()
info: > info: |
YieldExpression: yield * AssignmentExpression YieldExpression: yield * AssignmentExpression
... ...
@ -44,7 +47,8 @@
c. Return ! AsyncGeneratorResolve(generator, value, done). c. Return ! AsyncGeneratorResolve(generator, value, done).
... ...
flags: [async] flags: [async]
features: [async-iteration]
---*/ ---*/
var log = []; var log = [];

View File

@ -1,8 +1,11 @@
// Copyright 2017 Tooru Fujisawa. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
author: Tooru Fujisawa [:arai] <arai_a@mac.com> author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending esid: pending
description: execution order for yield* with async iterator and return() description: execution order for yield* with async iterator and return()
info: > info: |
YieldExpression: yield * AssignmentExpression YieldExpression: yield * AssignmentExpression
... ...
@ -33,7 +36,8 @@
c. Return ! AsyncGeneratorResolve(generator, value, done). c. Return ! AsyncGeneratorResolve(generator, value, done).
... ...
flags: [async] flags: [async]
features: [async-iteration]
---*/ ---*/
var log = []; var log = [];

View File

@ -1,8 +1,11 @@
// Copyright 2017 Tooru Fujisawa. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
author: Tooru Fujisawa [:arai] <arai_a@mac.com> author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending esid: pending
description: execution order for yield* with async iterator and throw() description: execution order for yield* with async iterator and throw()
info: > info: |
YieldExpression: yield * AssignmentExpression YieldExpression: yield * AssignmentExpression
... ...
@ -30,7 +33,8 @@
c. Return ! AsyncGeneratorResolve(generator, value, done). c. Return ! AsyncGeneratorResolve(generator, value, done).
... ...
flags: [async] flags: [async]
features: [async-iteration]
---*/ ---*/
var log = []; var log = [];

View File

@ -1,8 +1,11 @@
// Copyright 2017 Tooru Fujisawa. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
author: Tooru Fujisawa [:arai] <arai_a@mac.com> author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending esid: pending
description: execution order for yield* with sync iterator and next() description: execution order for yield* with sync iterator and next()
info: > info: |
YieldExpression: yield * AssignmentExpression YieldExpression: yield * AssignmentExpression
... ...
@ -56,7 +59,8 @@
1. Return ! CreateIterResultObject(value, F.[[Done]]). 1. Return ! CreateIterResultObject(value, F.[[Done]]).
flags: [async] flags: [async]
features: [async-iteration]
---*/ ---*/
var log = []; var log = [];

View File

@ -1,8 +1,11 @@
// Copyright 2017 Tooru Fujisawa. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
author: Tooru Fujisawa [:arai] <arai_a@mac.com> author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending esid: pending
description: execution order for yield* with sync iterator and return() description: execution order for yield* with sync iterator and return()
info: > info: |
YieldExpression: yield * AssignmentExpression YieldExpression: yield * AssignmentExpression
... ...
@ -42,7 +45,8 @@
onFulfilled, undefined, promiseCapability). onFulfilled, undefined, promiseCapability).
... ...
flags: [async] flags: [async]
features: [async-iteration]
---*/ ---*/
var log = []; var log = [];

View File

@ -1,8 +1,11 @@
// Copyright 2017 Tooru Fujisawa. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
author: Tooru Fujisawa [:arai] <arai_a@mac.com> author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending esid: pending
description: execution order for yield* with sync iterator and throw() description: execution order for yield* with sync iterator and throw()
info: > info: |
YieldExpression: yield * AssignmentExpression YieldExpression: yield * AssignmentExpression
... ...
@ -40,7 +43,8 @@
onFulfilled, undefined, promiseCapability). onFulfilled, undefined, promiseCapability).
... ...
flags: [async] flags: [async]
features: [async-iteration]
---*/ ---*/
var log = []; var log = [];