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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/constant_system.dart

Issue 99303004: Remove unused API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 7 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
Index: dart/sdk/lib/_internal/compiler/implementation/constant_system.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/constant_system.dart b/dart/sdk/lib/_internal/compiler/implementation/constant_system.dart
index b2e2b54ee8e47236f2dc7064d5570acd762193ed..4a10d400f41dff625aa2aac24079450757c09f7f 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/constant_system.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/constant_system.dart
@@ -6,13 +6,11 @@ part of dart2js;
abstract class Operation {
String get name;
- bool isUserDefinable();
}
abstract class UnaryOperation extends Operation {
/** Returns [:null:] if it was unable to fold the operation. */
Constant fold(Constant constant);
- apply(value);
}
abstract class BinaryOperation extends Operation {

Powered by Google App Engine
This is Rietveld 408576698