| Index: src/parsing/parse-info.cc
|
| diff --git a/src/parsing/parse-info.cc b/src/parsing/parse-info.cc
|
| index 2f812efee01bbc5aad98c8b455216e5901888e4d..5b9b5e4ef0635ad9fa59380fc3e082f86d2007e6 100644
|
| --- a/src/parsing/parse-info.cc
|
| +++ b/src/parsing/parse-info.cc
|
| @@ -88,19 +88,6 @@ bool ParseInfo::is_declaration() const {
|
| return (compiler_hints_ & (1 << SharedFunctionInfo::kIsDeclaration)) != 0;
|
| }
|
|
|
| -bool ParseInfo::is_arrow() const {
|
| - return (compiler_hints_ & (1 << SharedFunctionInfo::kIsArrow)) != 0;
|
| -}
|
| -
|
| -bool ParseInfo::is_async() const {
|
| - return (compiler_hints_ & (1 << SharedFunctionInfo::kIsAsyncFunction)) != 0;
|
| -}
|
| -
|
| -bool ParseInfo::is_default_constructor() const {
|
| - return (compiler_hints_ & (1 << SharedFunctionInfo::kIsDefaultConstructor)) !=
|
| - 0;
|
| -}
|
| -
|
| bool ParseInfo::requires_class_field_init() const {
|
| return (compiler_hints_ &
|
| (1 << SharedFunctionInfo::kRequiresClassFieldInit)) != 0;
|
|
|