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

[WIP] feat(ChangeDetector): unified architecture #1348

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/application_factory.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ library angular.app.factory;
import 'package:angular/angular.dart';
import 'package:angular/core/registry.dart';
import 'package:angular/core/parser/parser.dart' show ClosureMap;
import 'package:angular/change_detection/change_detection.dart';
import 'package:angular/change_detection/dirty_checking_change_detector_dynamic.dart';
import 'package:angular/change_detector/change_detector.dart';
import 'package:angular/change_detector/field_getter_factory_dynamic.dart';
import 'package:angular/core/registry_dynamic.dart';
import 'package:angular/core/parser/dynamic_closure_map.dart';
import 'package:angular/core_dom/type_to_uri_mapper.dart';
Expand Down
6 changes: 3 additions & 3 deletions lib/application_factory_static.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ import 'package:angular/core/parser/parser.dart';
import 'package:angular/core/parser/static_closure_map.dart';
import 'package:angular/core_dom/type_to_uri_mapper.dart';
import 'package:angular/core/registry_static.dart';
import 'package:angular/change_detection/change_detection.dart';
import 'package:angular/change_detection/dirty_checking_change_detector_static.dart';
import 'package:angular/change_detector/change_detector.dart';
import 'package:angular/change_detector/field_getter_factory_static.dart';

export 'package:angular/change_detection/change_detection.dart' show
export 'package:angular/change_detector/change_detector.dart' show
FieldGetter,
FieldSetter;

Expand Down
195 changes: 0 additions & 195 deletions lib/change_detection/change_detection.dart

This file was deleted.

Loading