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

Unified Diff: frog/leg/compiler.dart

Issue 9427012: Allow binary operators on compile-time-constants. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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
Index: frog/leg/compiler.dart
diff --git a/frog/leg/compiler.dart b/frog/leg/compiler.dart
index a6b82a19ffe64472e78110ae231dae948179b734..f312bef6b3c18f3f52b138e8bac02d94871fd8b5 100644
--- a/frog/leg/compiler.dart
+++ b/frog/leg/compiler.dart
@@ -103,8 +103,9 @@ class Compiler implements DiagnosticListener {
}
void unimplemented(String methodName,
- [Node node, Token token, HInstruction instruction]) {
- cancel("$methodName not implemented", node, token, instruction);
+ [Node node, Token token, HInstruction instruction,
+ Element element]) {
+ cancel("$methodName not implemented", node, token, instruction, element);
}
void internalError(String message,

Powered by Google App Engine
This is Rietveld 408576698