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

Unified Diff: tool/input_sdk/lib/collection/splay_tree.dart

Issue 1347153005: additional SDK fixes. This gets all of them, once we upgrade to new analyzer (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 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
« no previous file with comments | « tool/input_sdk/lib/async/stream.dart ('k') | tool/input_sdk/private/native_typed_data.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/collection/splay_tree.dart
diff --git a/tool/input_sdk/lib/collection/splay_tree.dart b/tool/input_sdk/lib/collection/splay_tree.dart
index 112698b98b7ebcf3f3659ec4afdbef4f2721969d..d932933201edaa2842d0cf3e909cbf525d15d61e 100644
--- a/tool/input_sdk/lib/collection/splay_tree.dart
+++ b/tool/input_sdk/lib/collection/splay_tree.dart
@@ -66,6 +66,10 @@ abstract class _SplayTree<K> {
/** Comparison used to compare keys. */
int _compare(K key1, K key2);
+ Comparator<K> get _comparator;
+
+ _Predicate<Object> get _validKey;
+
/**
* Perform the splay operation for the given key. Moves the node with
* the given key to the top of the tree. If no node has the given
« no previous file with comments | « tool/input_sdk/lib/async/stream.dart ('k') | tool/input_sdk/private/native_typed_data.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698