Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 9b31699

Browse files
committed
chore(style): match master
1 parent 57fee7c commit 9b31699

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

lib/change_detection/dirty_checking_change_detector.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1221,9 +1221,9 @@ class _CollectionChangeRecord<V> implements CollectionChangeRecord<V> {
12211221
}
12221222

12231223
ItemRecord<V> _addToRemovals(ItemRecord<V> record) {
1224-
record.currentIndex = null;
12251224
if (_unlinkedRecords == null) _unlinkedRecords = new DuplicateMap();
12261225
_unlinkedRecords.put(record);
1226+
record.currentIndex = null;
12271227
record._nextRemoved = null;
12281228

12291229
if (_removalsTail == null) {

lib/core_dom/directive_injector.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class DirectiveInjector implements DirectiveBinder {
9999
, EVENT_HANDLER_KEY
100100
, KEEP_ME_LAST
101101
];
102-
102+
103103
final DirectiveInjector parent;
104104
final Injector appInjector;
105105
final Node _node;

lib/core_dom/shadow_dom_component_factory.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ class ShadowDomComponentFactory implements ComponentFactory {
4646

4747
final Map<_ComponentAssetKey, async.Future<dom.StyleElement>> styleElementCache = {};
4848

49-
ShadowDomComponentFactory(this.viewCache, this.http, this.templateCache, this.platform, this.componentCssRewriter, this.treeSanitizer, this.expando, this.config, CacheRegister cacheRegister) {
49+
ShadowDomComponentFactory(this.viewCache, this.http, this.templateCache, this.platform,
50+
this.componentCssRewriter, this.treeSanitizer, this.expando,
51+
this.config, CacheRegister cacheRegister) {
5052
cacheRegister.registerCache("ShadowDomComponentFactoryStyles", styleElementCache);
5153
}
5254

0 commit comments

Comments
 (0)