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

Unified Diff: dart/frog/leg/resolver.dart

Issue 8993009: Implement string interpolation up to SSA. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address (some) review comments and update status file Created 9 years 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 | « dart/frog/leg/compiler.dart ('k') | dart/frog/leg/scanner/listener.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/frog/leg/resolver.dart
diff --git a/dart/frog/leg/resolver.dart b/dart/frog/leg/resolver.dart
index 7c5e998ed6c40e3455bcf156e33b0bce8b4c0737..ac8cdea602321b3091cd3a48944d5a61c0422dc1 100644
--- a/dart/frog/leg/resolver.dart
+++ b/dart/frog/leg/resolver.dart
@@ -438,6 +438,14 @@ class FullResolverVisitor extends ResolverVisitor {
visitConditional(Conditional node) {
node.visitChildren(this);
}
+
+ visitStringInterpolation(StringInterpolation node) {
+ node.visitChildren(this);
+ }
+
+ visitStringInterpolationPart(StringInterpolationPart node) {
+ node.visitChildren(this);
+ }
}
class ClassResolverVisitor extends AbstractVisitor<Type> {
« no previous file with comments | « dart/frog/leg/compiler.dart ('k') | dart/frog/leg/scanner/listener.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698