Chromium Code Reviews| Index: src/globals.h |
| diff --git a/src/globals.h b/src/globals.h |
| index 3d71934a5ca2360b3af76008009fc8a3e76eb5d0..f5520250459c6c3259517ef0eadce86a7eedf3d7 100644 |
| --- a/src/globals.h |
| +++ b/src/globals.h |
| @@ -1058,6 +1058,7 @@ inline bool IsConstructable(FunctionKind kind, LanguageMode mode) { |
| if (IsConciseMethod(kind)) return false; |
| if (IsArrowFunction(kind)) return false; |
| if (IsGeneratorFunction(kind)) return false; |
| + if (IsAsyncFunction(kind)) return false; |
| return true; |
| } |