Home | History | Annotate | Download | only in src

Lines Matching refs:generator

2621 // ES6 section 25.3 Generator Objects
2707 // ES6 section 25.3.1.2 Generator.prototype.next ( value )
2710 "[Generator].prototype.next");
2713 // ES6 section 25.3.1.3 Generator.prototype.return ( value )
2716 "[Generator].prototype.return");
2719 // ES6 section 25.3.1.4 Generator.prototype.throw ( exception )
2722 "[Generator].prototype.throw");
5704 byte* generator;
5753 typedef void (*Generator)(MacroAssembler*, int);
5754 Generator g = FUNCTION_CAST<Generator>(builtin_desc->generator);
5755 // We pass all arguments to the generator, but it may not use all of
5774 typedef void (*Generator)(CodeStubAssembler*);
5775 Generator g = FUNCTION_CAST<Generator>(builtin_desc->generator);
5793 typedef void (*Generator)(CodeStubAssembler*);
5794 Generator g = FUNCTION_CAST<Generator>(builtin_desc->generator);
5808 functions[builtin_count].generator = nullptr;
5817 functions->generator = FUNCTION_ADDR(Generate_Adaptor); \
5827 functions->generator = FUNCTION_ADDR(Generate_##aname); \
5837 functions->generator = FUNCTION_ADDR(Generate_##aname); \
5847 functions->generator = FUNCTION_ADDR(Generate_##aname); \
5857 functions->generator = FUNCTION_ADDR(Generate_##aname); \