blob: bf949bd04f06d83131503cc961358a87b619b033 [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: >
Generator instances directly inherit properties from the object that is the
value of the prototype property of the Generator function that created the
instance.
es6id: 25.3
features: [generators]
---*/
function* g() {}
assert.sameValue(
Object.getPrototypeOf(g()),
g.prototype,
'Instance created via function invocation'
);