This repository was archived by the owner on Feb 22, 2018. It is now read-only.
File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ class SourceMetadataExtractor {
117
117
}
118
118
}
119
119
120
- class DirectiveMetadataCollectingAstVisitor extends RecursiveAstVisitor {
120
+ class DirectiveMetadataCollectingAstVisitor extends RecursiveASTVisitor {
121
121
final List <DirectiveMetadata > metadata;
122
122
final List <String > templates;
123
123
Original file line number Diff line number Diff line change @@ -245,6 +245,7 @@ main() {
245
245
"di.FactoryFn" ,
246
246
"di.Injector" ,
247
247
"di.InvalidBindingError" ,
248
+ "di.Key" ,
248
249
"di.Module" ,
249
250
"di.NoProviderError" ,
250
251
"di.ObjectFactory" ,
@@ -256,7 +257,8 @@ main() {
256
257
"route.client.RouteEnterEventHandler" ,
257
258
"route.client.RouteEvent" ,
258
259
"route.client.RouteHandle" ,
259
- "route.client.RouteImpl" ,
260
+ // This will be present in the new Route package.
261
+ // "route.client.RouteImpl",
260
262
"route.client.RouteLeaveEvent" ,
261
263
"route.client.RouteLeaveEventHandler" ,
262
264
"route.client.RoutePreEnterEvent" ,
Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ main() {
53
53
_ = injector.get (TestBed );
54
54
}
55
55
56
- it ('should configure route hierarchy from provided config' , async (() {
56
+ // TODO(chirayu): requires new route package.
57
+ xit ('should configure route hierarchy from provided config' , async (() {
57
58
var counters = {
58
59
'foo' : 0 ,
59
60
'bar' : 0 ,
You can’t perform that action at this time.
0 commit comments