This repository was archived by the owner on Feb 22, 2018. It is now read-only.
File tree 3 files changed +23
-4
lines changed
3 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 32
32
library angular.core;
33
33
34
34
35
+ export "package:angular/core/parser/parser.dart" show
36
+ Parser;
37
+
38
+ export "package:angular/core/parser/dynamic_parser.dart" show
39
+ ClosureMap;
40
+
41
+ export "package:angular/change_detection/change_detection.dart" show
42
+ AvgStopwatch,
43
+ FieldGetterFactory;
44
+
35
45
export "package:angular/core_dom/module_internal.dart" show
36
46
Animation,
37
47
AnimationResult,
38
48
BrowserCookies,
49
+ Cache,
39
50
Compiler,
40
51
Cookies,
52
+ BoundViewFactory,
53
+ DirectiveMap,
41
54
ElementProbe,
42
55
EventHandler,
43
56
Http,
@@ -48,20 +61,26 @@ export "package:angular/core_dom/module_internal.dart" show
48
61
HttpInterceptors,
49
62
HttpResponse,
50
63
HttpResponseConfig,
64
+ LocationWrapper,
51
65
NoOpAnimation,
52
66
NullTreeSanitizer,
53
67
NgAnimate,
68
+ NgElement,
54
69
RequestErrorInterceptor,
55
70
RequestInterceptor,
56
71
Response,
57
72
ResponseError,
73
+ UrlRewriter,
58
74
TemplateCache,
59
75
View,
76
+ ViewCache,
60
77
ViewFactory,
61
78
ViewPort;
79
+
62
80
export "package:angular/core/module_internal.dart" show
63
81
CacheStats,
64
82
ExceptionHandler,
83
+ FilterMap,
65
84
Interpolate,
66
85
NgZone,
67
86
PrototypeMap,
Original file line number Diff line number Diff line change @@ -784,9 +784,9 @@ class _Streams {
784
784
return event;
785
785
}
786
786
787
- static ScopeStream on (Scope scope,
788
- ExceptionHandler _exceptionHandler,
789
- String name) {
787
+ static async . Stream < ScopeEvent > on (Scope scope,
788
+ ExceptionHandler _exceptionHandler,
789
+ String name) {
790
790
_forceNewScopeStream (scope, _exceptionHandler);
791
791
return scope._streams._get (scope, name);
792
792
}
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ main() {
43
43
});
44
44
45
45
describe ('angular symbols' , () {
46
- it ('should not export symbols that we do not know about' , () {
46
+ iit ('should not export symbols that we do not know about' , () {
47
47
// Test is failing? Add new symbols to the "ALLOWED_NAMES" list below.
48
48
// But make sure that you intend to export the symbol!
49
49
// Questions? Talk to @jbdeboer
You can’t perform that action at this time.
0 commit comments