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

Unified Diff: frog/leg/tree/nodes.dart

Issue 9592009: Reapply "Refactor constant part." (r4958) with fixes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update tests and fix code after renaming. 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: frog/leg/tree/nodes.dart
diff --git a/frog/leg/tree/nodes.dart b/frog/leg/tree/nodes.dart
index 1f1fe841506bf644ec7c9895ff83af180008a074..0b63bbbe3c460b4937584ce96ee555923d7bfd5e 100644
--- a/frog/leg/tree/nodes.dart
+++ b/frog/leg/tree/nodes.dart
@@ -729,8 +729,6 @@ class DartString implements Iterable<int> {
DartString();
abstract int get length();
bool isEmpty() => length == 0;
- // TODO(lrn): Is this test too expensive?
- bool definitelyEquals(DartString other) => toString() == other.toString();
abstract Iterator<int> iterator();
abstract String toString();

Powered by Google App Engine
This is Rietveld 408576698