Index: src/fast-codegen.h |
diff --git a/src/fast-codegen.h b/src/fast-codegen.h |
index ee2e1d345ecfc913b9fd1b121b4c897042e5e9db..0c5f2a44fbb2eb47ee4fe251826df1db803dbefd 100644 |
--- a/src/fast-codegen.h |
+++ b/src/fast-codegen.h |
@@ -70,6 +70,7 @@ class FastCodeGenerator: public AstVisitor { |
void TestAndBranch(Register source, Label* true_label, Label* false_label); |
void VisitDeclarations(ZoneList<Declaration*>* declarations); |
+ void VisitCondition(Expression* expression, Label* on_true, Label* on_false); |
Kevin Millikin (Chromium)
2009/11/12 14:23:13
Please do not call this Visit, because it's not pa
Lasse Reichstein
2009/11/13 08:54:37
I'll call it something else if I revisit the idea.
|
void DeclareGlobals(Handle<FixedArray> pairs); |
// Platform-specific return sequence |