Chromium Code Reviews| Index: src/globals.h |
| diff --git a/src/globals.h b/src/globals.h |
| index 3d8f57aadde42aa8a4eb06429b0b3911af3707f8..775290155ac83de6e9e6bb266e2a79f510e3737b 100644 |
| --- a/src/globals.h |
| +++ b/src/globals.h |
| @@ -765,7 +765,8 @@ enum FunctionKind { |
| kArrowFunction = 1, |
| kGeneratorFunction = 2, |
| kConciseMethod = 4, |
| - kConciseGeneratorMethod = kGeneratorFunction | kConciseMethod |
| + kConciseGeneratorMethod = kGeneratorFunction | kConciseMethod, |
| + kConstructorMethod = kNormalFunction |
|
Dmitry Lomov (no reviews)
2014/10/07 15:09:37
Set but unused? Let's remove it.
arv (Not doing code reviews)
2014/10/07 15:16:52
It is used in preparser.h. I can change that to us
Dmitry Lomov (no reviews)
2014/10/07 15:21:05
Right, I've seen that. Let's not add constants tha
arv (Not doing code reviews)
2014/10/07 16:13:18
Done.
|
| }; |