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

Unified Diff: lib/compiler/implementation/lib/js_helper.dart

Issue 10917208: Change interfaces to abstract classes in dart2js compiler. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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: lib/compiler/implementation/lib/js_helper.dart
diff --git a/lib/compiler/implementation/lib/js_helper.dart b/lib/compiler/implementation/lib/js_helper.dart
index 87e7b58429e8d3336710de925bd9153dc91f1ed5..229cc574493e04544d856995539f14155da73b40 100644
--- a/lib/compiler/implementation/lib/js_helper.dart
+++ b/lib/compiler/implementation/lib/js_helper.dart
@@ -942,7 +942,7 @@ getFallThroughError() => const FallThroughErrorImplementation();
/**
* Represents the type Dynamic. The compiler treats this specially.
*/
-interface Dynamic_ {
+abstract class Dynamic_ {
}
/**
@@ -1221,7 +1221,7 @@ listSuperNativeTypeCast(value, property) {
* objects that support integer indexing. This interface is not
* visible to anyone, and is only injected into special libraries.
*/
-interface JavaScriptIndexingBehavior {
+abstract class JavaScriptIndexingBehavior {
}
// TODO(lrn): These exceptions should be implemented in core.

Powered by Google App Engine
This is Rietveld 408576698