| Index: src/builtins.h
|
| diff --git a/src/builtins.h b/src/builtins.h
|
| index 2918b9b7337d8c436f1042d13e0e24a5e24b7b9c..974f6c56f857e9f3257f0d72fdaa4941b3e99dbc 100644
|
| --- a/src/builtins.h
|
| +++ b/src/builtins.h
|
| @@ -307,6 +307,8 @@ inline bool operator&(BuiltinExtraArguments lhs, BuiltinExtraArguments rhs) {
|
| V(GeneratorPrototypeNext, 2) \
|
| V(GeneratorPrototypeReturn, 2) \
|
| V(GeneratorPrototypeThrow, 2) \
|
| + V(AsyncFunctionNext, 3) \
|
| + V(AsyncFunctionThrow, 3) \
|
| V(MathCeil, 2) \
|
| V(MathClz32, 2) \
|
| V(MathFloor, 2) \
|
| @@ -628,6 +630,11 @@ class Builtins {
|
| static void Generate_GeneratorPrototypeThrow(
|
| compiler::CodeStubAssembler* assembler);
|
|
|
| + static void Generate_AsyncFunctionNext(
|
| + compiler::CodeStubAssembler* assembler);
|
| + static void Generate_AsyncFunctionThrow(
|
| + compiler::CodeStubAssembler* assembler);
|
| +
|
| // ES6 section 19.1.3.2 Object.prototype.hasOwnProperty
|
| static void Generate_ObjectHasOwnProperty(
|
| compiler::CodeStubAssembler* assembler);
|
|
|