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

Unified Diff: compiler/java/com/google/dart/compiler/InternalCompilerException.java

Issue 9860009: Removes dartc reliance on its own libraries, now can be targeted at any implementation's libraries (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated 'configs' to be 'config' directory, updated addLib() to throw exception Created 8 years, 9 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: compiler/java/com/google/dart/compiler/InternalCompilerException.java
diff --git a/compiler/java/com/google/dart/compiler/InternalCompilerException.java b/compiler/java/com/google/dart/compiler/InternalCompilerException.java
index 5db265e920aa47768a8736c2e88d8bbe2d25a2a4..89e355b6a50907f48a33f24dc833ad95b8123383 100644
--- a/compiler/java/com/google/dart/compiler/InternalCompilerException.java
+++ b/compiler/java/com/google/dart/compiler/InternalCompilerException.java
@@ -12,4 +12,8 @@ public class InternalCompilerException extends RuntimeException {
public InternalCompilerException(String message) {
super(message);
}
+
+ public InternalCompilerException(String message, Throwable t) {
+ super(message, t);
+ }
}

Powered by Google App Engine
This is Rietveld 408576698