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

Unified Diff: third_party/pkg/angular/lib/core/cache.dart

Issue 257423008: Update all Angular libs (run update_all.sh). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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: third_party/pkg/angular/lib/core/cache.dart
diff --git a/third_party/pkg/angular/lib/core/cache.dart b/third_party/pkg/angular/lib/core/cache.dart
index 588a57567fee2bab5e6af7e3b3367eb21f9ac416..23e5d13e8d55b9c707d52382d20151452c4dfdd4 100644
--- a/third_party/pkg/angular/lib/core/cache.dart
+++ b/third_party/pkg/angular/lib/core/cache.dart
@@ -1,4 +1,4 @@
-part of angular.core;
+part of angular.core_internal;
class CacheStats {
final int capacity;
@@ -76,7 +76,7 @@ class UnboundedCache<K, V> implements Cache<K, V> {
* - should stringify keys?
*/
class LruCache<K, V> extends Cache<K, V> {
- Map<K, V> _entries = new LinkedHashMap<K, V>();
+ final _entries = new LinkedHashMap<K, V>();
int _capacity;
int _hits = 0;
int _misses = 0;
« no previous file with comments | « third_party/pkg/angular/lib/core/annotation_src.dart ('k') | third_party/pkg/angular/lib/core/directive.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698