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

Unified Diff: pkg/analysis_server/test/index/b_plus_tree_test.dart

Issue 321953002: FilePageManager - disk based PageManager. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Improved tests. Created 6 years, 6 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: pkg/analysis_server/test/index/b_plus_tree_test.dart
diff --git a/pkg/analysis_server/test/index/b_plus_tree_test.dart b/pkg/analysis_server/test/index/b_plus_tree_test.dart
index 9abb899477a44bccb89d69e5a0adf281e08416bd..bb8ff336977dd84faef8bc2c458d4e9cb7e07830 100644
--- a/pkg/analysis_server/test/index/b_plus_tree_test.dart
+++ b/pkg/analysis_server/test/index/b_plus_tree_test.dart
@@ -682,5 +682,5 @@ INode {
class _TestBTree<K, V> extends BPlusTree<K, V, int> {
_TestBTree(int maxIndexKeys, int maxLeafKeys, Comparator<K> comparator) :
- super(maxIndexKeys, maxLeafKeys, comparator, new MemoryNodeManager());
+ super(comparator, new MemoryNodeManager(maxIndexKeys, maxLeafKeys));
}
« no previous file with comments | « pkg/analysis_server/lib/src/index/page_node_manager.dart ('k') | pkg/analysis_server/test/index/file_page_manager_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698