Lines Matching refs:foo
22 async function foo() {
27 var s = foo()
31 print(foo.name)
32 print(foo.call != undefined)
33 print(foo.__proto__.constructor.name);
34 print(foo.__proto__.__proto__.constructor.name);
35 print(foo.__proto__.__proto__.__proto__.constructor.name);
36 print(foo.length)
61 async *foo() {
69 for await (const val of obj.foo()) {