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
... ...
@ -45,6 +48,7 @@
... ...
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
... ...
@ -34,6 +37,7 @@
... ...
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
... ...
@ -31,6 +34,7 @@
... ...
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
... ...
@ -57,6 +60,7 @@
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
... ...
@ -43,6 +46,7 @@
... ...
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
... ...
@ -41,6 +44,7 @@
... ...
flags: [async] flags: [async]
features: [async-iteration]
---*/ ---*/
var log = []; var log = [];