Chromium Code Reviews| Index: runtime/vm/ast_printer.cc |
| =================================================================== |
| --- runtime/vm/ast_printer.cc (revision 26025) |
| +++ runtime/vm/ast_printer.cc (working copy) |
| @@ -164,7 +164,12 @@ |
| void AstPrinter::VisitBinaryOpNode(BinaryOpNode* node) { |
| - VisitGenericAstNode(node); |
| + OS::Print("(%s ", node->Name()); |
| + node->VisitChildren(this); |
| + if (node->has_mask32()) { |
| + OS::Print(" & 0x%"Px64"", node->mask32()); |
| + } |
| + OS::Print(")"); |
| } |