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

Unified Diff: dart/frog/leg/compiler.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 | « no previous file | dart/frog/leg/resolver.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/frog/leg/compiler.dart
diff --git a/dart/frog/leg/compiler.dart b/dart/frog/leg/compiler.dart
index a67dc94fec2e5284e1b880545abdfcc5776f0d60..34cb2ec0dbbbf0f8ae2489891138244052cb6cdd 100644
--- a/dart/frog/leg/compiler.dart
+++ b/dart/frog/leg/compiler.dart
@@ -70,8 +70,9 @@ class Compiler implements Canceler, Logger {
if (!condition) cancel('failed assertion in leg');
}
- void unimplemented(String methodName) {
- cancel("$methodName not implemented");
+ void unimplemented(String methodName,
+ [Node node, Token token, HInstruction instruction]) {
+ cancel("$methodName not implemented", node, token, instruction);
}
void cancel([String reason, Node node, Token token,
« no previous file with comments | « no previous file | dart/frog/leg/resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698