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

Side by Side Diff: dart/tests/try/poi/library_updater_test.dart

Issue 627673002: Add LibraryUpdater.hasPendingUpdates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Return a list to avoid applying the updates many times. Created 6 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/pkg/dart2js_incremental/lib/library_updater.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // Test of LibraryUpdater. 5 // Test of LibraryUpdater.
6 library trydart.library_updater_test; 6 library trydart.library_updater_test;
7 7
8 import 'dart:convert' show 8 import 'dart:convert' show
9 UTF8; 9 UTF8;
10 10
(...skipping 22 matching lines...) Expand all
33 this.expectedUpdates = updates, 33 this.expectedUpdates = updates,
34 super(before); 34 super(before);
35 35
36 Future run() => mainApp.then((LibraryElement library) { 36 Future run() => mainApp.then((LibraryElement library) {
37 LibraryUpdater updater = 37 LibraryUpdater updater =
38 new LibraryUpdater(this.compiler, null, scriptUri, nolog, nolog); 38 new LibraryUpdater(this.compiler, null, scriptUri, nolog, nolog);
39 bool actualCanReuse = 39 bool actualCanReuse =
40 updater.canReuseLibrary(library, UTF8.encode(newSource)); 40 updater.canReuseLibrary(library, UTF8.encode(newSource));
41 Expect.equals(expectedCanReuse, actualCanReuse); 41 Expect.equals(expectedCanReuse, actualCanReuse);
42 42
43 Expect.equals(expectedCanReuse, updater.hasPendingUpdates);
44
43 Expect.setEquals( 45 Expect.setEquals(
44 expectedUpdates.toSet(), 46 expectedUpdates.toSet(),
45 updater.updates.map((Update update) => update.before.name).toSet()); 47 updater.updates.map((Update update) => update.before.name).toSet());
46 }); 48 });
47 49
48 String toString() => 'Before:\n$source\n\n\nAfter:\n$newSource'; 50 String toString() => 'Before:\n$source\n\n\nAfter:\n$newSource';
49 } 51 }
50 52
51 void main() { 53 void main() {
52 runTests( 54 runTests(
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 new LibraryUpdaterTestCase( 114 new LibraryUpdaterTestCase(
113 before: 'main() => null;', 115 before: 'main() => null;',
114 after: 'main() {}', 116 after: 'main() {}',
115 canReuse: true, 117 canReuse: true,
116 updates: ['main']), 118 updates: ['main']),
117 119
118 // TODO(ahe): When supporting class members, test abstract methods. 120 // TODO(ahe): When supporting class members, test abstract methods.
119 ] 121 ]
120 ); 122 );
121 } 123 }
OLDNEW
« no previous file with comments | « dart/pkg/dart2js_incremental/lib/library_updater.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698