blob: 3eba24f3b393746d9f4fea9889b483da1209b14e [file] [log] [blame]
// Copyright (C) 2013 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
GeneratorFunction instances are created with a unique prototype object.
es6id: 25.2.1
features: [generators]
---*/
function* g1() {}
function* g2() {}
assert(g1.prototype !== g2.prototype);