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

Unified Diff: frog/leg/compiler.dart

Issue 9086010: closure calls (just the invocation part). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update test status file. Created 8 years, 12 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
« no previous file with comments | « no previous file | frog/leg/elements/elements.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/leg/compiler.dart
diff --git a/frog/leg/compiler.dart b/frog/leg/compiler.dart
index 9a00dad0a4059d694500b20501c1404cd38d2826..4a044f7b3b242c610a0c4d5070923f34849aff63 100644
--- a/frog/leg/compiler.dart
+++ b/frog/leg/compiler.dart
@@ -76,6 +76,11 @@ class Compiler implements Canceler, Logger {
cancel("$methodName not implemented", node, token, instruction);
}
+ void internalError(String message,
+ [Node node, Token token, HInstruction instruction]) {
+ cancel("Internal Error: $message", node, token, instruction);
+ }
+
void cancel([String reason, Node node, Token token,
HInstruction instruction]) {
throw new CompilerCancelledException(reason);
« no previous file with comments | « no previous file | frog/leg/elements/elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698