We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74d97e commit 19e4ee8Copy full SHA for 19e4ee8
modules/angular2/src/transform/template_compiler/change_detector_codegen.dart
@@ -231,7 +231,7 @@ class _CodegenState {
231
232
List<String> _getNonNullPipeNames() {
233
return _records
234
- .where((r) => r.mode == RecordType.PIPE)
+ .where((r) => r.isPipeRecord())
235
.map((r) => _pipeNames[r.selfIndex])
236
.toList();
237
}
@@ -276,7 +276,7 @@ class _CodegenState {
276
'${_genGetDirective(rec.directiveIndex)}.onAllChangesDone();')
277
.join('');
278
return '''
279
- _dispatcher.notifyOnAllChangesDone();
+ $_DISPATCHER_ACCESSOR.notifyOnAllChangesDone();
280
${directiveNotifications}
281
''';
282
0 commit comments