| Index: runtime/vm/ast_printer.cc
|
| diff --git a/runtime/vm/ast_printer.cc b/runtime/vm/ast_printer.cc
|
| index e4388278f91d83fbf6d371f1da8a9b038a1fd6cd..eb5dd3be1ccfc282bf4d4e0bc47fccc909738ab5 100644
|
| --- a/runtime/vm/ast_printer.cc
|
| +++ b/runtime/vm/ast_printer.cc
|
| @@ -228,14 +228,6 @@ void AstPrinter::VisitBinaryOpNode(BinaryOpNode* node) {
|
| }
|
|
|
|
|
| -void AstPrinter::VisitBinaryOpWithMask32Node(BinaryOpWithMask32Node* node) {
|
| - THR_Print("(%s %s ", node->Name(), node->TokenName());
|
| - node->VisitChildren(this);
|
| - THR_Print(" & \"0x%" Px64 "", node->mask32());
|
| - THR_Print("\")");
|
| -}
|
| -
|
| -
|
| void AstPrinter::VisitUnaryOpNode(UnaryOpNode* node) {
|
| THR_Print("(%s %s ", node->Name(), node->TokenName());
|
| node->VisitChildren(this);
|
|
|