Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(494)

Unified Diff: runtime/vm/ast_printer.cc

Issue 1900863004: VM: Remove _leftShiftWithMask32. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/ast.cc ('k') | runtime/vm/ast_transformer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « runtime/vm/ast.cc ('k') | runtime/vm/ast_transformer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698