AsyncFunction-is-extensible.js (387B)
1 // Copyright 2016 Microsoft, Inc. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 author: Brian Terlson <brian.terlson@microsoft.com> 6 esid: pending 7 description: > 8 %AsyncFunction% is extensible 9 ---*/ 10 11 var AsyncFunction = async function() {}.constructor; 12 AsyncFunction.x = 1; 13 assert.sameValue(AsyncFunction.x, 1); 14 15 reportCompare(0, 0);