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

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: 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
Index: dart/frog/leg/resolver.dart
diff --git a/dart/frog/leg/resolver.dart b/dart/frog/leg/resolver.dart
index f91955c1e5f33d442abfe16bdff1df2e4596f812..dba00f3c7b9a887dd48d52f47fae5a69afbf30c6 100644
--- a/dart/frog/leg/resolver.dart
+++ b/dart/frog/leg/resolver.dart
@@ -432,6 +432,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> {

Powered by Google App Engine
This is Rietveld 408576698