Index: src/compiler.cc |
=================================================================== |
--- src/compiler.cc (revision 3146) |
+++ src/compiler.cc (working copy) |
@@ -697,7 +697,9 @@ |
void CodeGenSelector::VisitProperty(Property* expr) { |
- BAILOUT("Property"); |
+ Visit(expr->obj()); |
+ CHECK_BAILOUT; |
+ Visit(expr->key()); |
} |