blob: 3f6472682852c0fb664997d83311754c212d7907 [file] [log] [blame]
// Copyright (C) 2015 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]
---*/
var g = function*() {};
assert.sameValue(
Object.getPrototypeOf(g()),
g.prototype,
'Instance created via function invocation'
);