| Index: src/parser.h
|
| diff --git a/src/parser.h b/src/parser.h
|
| index 9080160c7590f21cce5a7ac3e619e86b60d383f0..05961414098186770fe538b6c0df619daedd78f4 100644
|
| --- a/src/parser.h
|
| +++ b/src/parser.h
|
| @@ -216,6 +216,7 @@ class FunctionEntry BASE_EMBEDDED {
|
| kPropertyCountIndex,
|
| kLanguageModeIndex,
|
| kUsesSuperPropertyIndex,
|
| + kCallsEvalIndex,
|
| kSize
|
| };
|
|
|
| @@ -233,6 +234,7 @@ class FunctionEntry BASE_EMBEDDED {
|
| return static_cast<LanguageMode>(backing_[kLanguageModeIndex]);
|
| }
|
| bool uses_super_property() { return backing_[kUsesSuperPropertyIndex]; }
|
| + bool calls_eval() { return backing_[kCallsEvalIndex]; }
|
|
|
| bool is_valid() { return !backing_.is_empty(); }
|
|
|
|
|