Chromium Code Reviews| Index: runtime/vm/ast_printer.cc |
| =================================================================== |
| --- runtime/vm/ast_printer.cc (revision 28647) |
| +++ runtime/vm/ast_printer.cc (working copy) |
| @@ -124,6 +124,11 @@ |
| } |
| +void AstPrinter::VisitStringInterpolateNode(StringInterpolateNode* node) { |
| + VisitGenericAstNode(node); |
| +} |
| + |
| + |
| void AstPrinter::VisitLiteralNode(LiteralNode* node) { |
| const Instance& literal = node->literal(); |
| OS::Print("(%s \"%s\")", node->PrettyName(), literal.ToCString()); |