callable.js (327B)
1 // Copyright (C) 2020 Rick Waldron. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 esid: sec-iterator.from 5 description: > 6 Iterator.from is callable 7 features: [iterator-helpers] 8 ---*/ 9 function* g() {} 10 11 Iterator.from(g()); 12 Iterator.from.call(null, g()); 13 14 reportCompare(0, 0);