blob: ecc2a9f5a12c5b5a628b851bab6fd010ef0596be [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]
---*/
var g1 = function*() {};
var g2 = function*() {};
assert(g1.prototype !== g2.prototype);