Chromium Code Reviews| Index: src/typing.h |
| =================================================================== |
| --- src/typing.h (revision 24959) |
| +++ src/typing.h (working copy) |
| @@ -75,7 +75,7 @@ |
| void VisitDeclarations(ZoneList<Declaration*>* declarations); |
|
Jakob Kummerow
2014/10/29 10:17:45
...and one more VisitDeclarations
Nico
2014/10/29 15:43:39
Yes: https://code.google.com/p/v8/issues/attachmen
|
| void VisitStatements(ZoneList<Statement*>* statements); |
|
Nico
2014/10/29 15:43:39
This one too: https://code.google.com/p/v8/issues/
|
| -#define DECLARE_VISIT(type) virtual void Visit##type(type* node); |
| +#define DECLARE_VISIT(type) virtual void Visit##type(type* node) OVERRIDE; |
| AST_NODE_LIST(DECLARE_VISIT) |
| #undef DECLARE_VISIT |