2016-06-09 14:18:27 +00:00
|
|
|
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2017-01-17 15:28:42 +00:00
|
|
|
// Flags: --ignition --ignition-filter=-foo
|
2016-06-09 14:18:27 +00:00
|
|
|
|
|
|
|
function* foo() { yield 42 }
|
2016-06-10 13:26:40 +00:00
|
|
|
function* goo() { yield 42 }
|
|
|
|
var f = foo();
|
|
|
|
var g = goo();
|
|
|
|
assertEquals(42, f.next().value);
|
2016-06-09 14:18:27 +00:00
|
|
|
assertEquals(42, g.next().value);
|
2016-06-10 13:26:40 +00:00
|
|
|
assertEquals(true, f.next().done);
|
2016-06-09 14:18:27 +00:00
|
|
|
assertEquals(true, g.next().done);
|