// Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- es6id: 25.2.4.2 description: > The `prototype` property of GeneratorFunction instances are created as plain objects with no "own" properties. features: [generators] ---*/ function* g() {} var ownProperties = Object.getOwnPropertyNames(g.prototype); assert.sameValue(ownProperties.length, 0); reportCompare(0, 0);