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>
esid: pending
description: execution order for yield* with async iterator and next()
info: >
author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending
description: execution order for yield* with async iterator and next()
info: |
YieldExpression: yield * AssignmentExpression
...
@ -44,7 +47,8 @@
c. Return ! AsyncGeneratorResolve(generator, value, done).
...
flags: [async]
flags: [async]
features: [async-iteration]
---*/
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>
esid: pending
description: execution order for yield* with async iterator and return()
info: >
author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending
description: execution order for yield* with async iterator and return()
info: |
YieldExpression: yield * AssignmentExpression
...
@ -33,7 +36,8 @@
c. Return ! AsyncGeneratorResolve(generator, value, done).
...
flags: [async]
flags: [async]
features: [async-iteration]
---*/
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>
esid: pending
description: execution order for yield* with async iterator and throw()
info: >
author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending
description: execution order for yield* with async iterator and throw()
info: |
YieldExpression: yield * AssignmentExpression
...
@ -30,7 +33,8 @@
c. Return ! AsyncGeneratorResolve(generator, value, done).
...
flags: [async]
flags: [async]
features: [async-iteration]
---*/
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>
esid: pending
description: execution order for yield* with sync iterator and next()
info: >
author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending
description: execution order for yield* with sync iterator and next()
info: |
YieldExpression: yield * AssignmentExpression
...
@ -56,7 +59,8 @@
1. Return ! CreateIterResultObject(value, F.[[Done]]).
flags: [async]
flags: [async]
features: [async-iteration]
---*/
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>
esid: pending
description: execution order for yield* with sync iterator and return()
info: >
author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending
description: execution order for yield* with sync iterator and return()
info: |
YieldExpression: yield * AssignmentExpression
...
@ -42,7 +45,8 @@
onFulfilled, undefined, promiseCapability).
...
flags: [async]
flags: [async]
features: [async-iteration]
---*/
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>
esid: pending
description: execution order for yield* with sync iterator and throw()
info: >
author: Tooru Fujisawa [:arai] <arai_a@mac.com>
esid: pending
description: execution order for yield* with sync iterator and throw()
info: |
YieldExpression: yield * AssignmentExpression
...
@ -40,7 +43,8 @@
onFulfilled, undefined, promiseCapability).
...
flags: [async]
flags: [async]
features: [async-iteration]
---*/
var log = [];