| Index: src/parsing/func-name-inferrer.h
|
| diff --git a/src/parsing/func-name-inferrer.h b/src/parsing/func-name-inferrer.h
|
| index ba38ffeb241c348ab8e285a842b08e5f12590615..2096ba509d211ca0a50ec55feb53cc887cb145a0 100644
|
| --- a/src/parsing/func-name-inferrer.h
|
| +++ b/src/parsing/func-name-inferrer.h
|
| @@ -16,6 +16,8 @@ class AstString;
|
| class AstValueFactory;
|
| class FunctionLiteral;
|
|
|
| +enum class InferName { Yes, No };
|
| +
|
| // FuncNameInferrer is a stateful class that is used to perform name
|
| // inference for anonymous functions during static analysis of source code.
|
| // Inference is performed in cases when an anonymous function is assigned
|
| @@ -71,6 +73,8 @@ class FuncNameInferrer : public ZoneObject {
|
| }
|
| }
|
|
|
| + void RemoveAsyncKeywordFromEnd();
|
| +
|
| // Infers a function name and leaves names collection state.
|
| void Infer() {
|
| DCHECK(IsOpen());
|
|
|