Chromium Code Reviews| Index: vm/parser.h |
| =================================================================== |
| --- vm/parser.h (revision 7576) |
| +++ vm/parser.h (working copy) |
| @@ -30,6 +30,8 @@ |
| // The class ParsedFunction holds the result of parsing a function. |
| class ParsedFunction : ValueObject { |
| public: |
| + static const int kFirstStackSlotIndex = -2; |
|
regis
2012/05/14 17:33:10
The name is not clear, since parameters also occup
siva
2012/05/15 23:52:39
Changed name as discussed offline.
The naming for
|
| + |
| explicit ParsedFunction(const Function& function) |
| : function_(function), |
| node_sequence_(NULL), |