File tree Expand file tree Collapse file tree 6 files changed +0
-16
lines changed Expand file tree Collapse file tree 6 files changed +0
-16
lines changed Original file line number Diff line number Diff line change 1
1
library recipe_book;
2
2
3
3
import 'package:angular/angular.dart' ;
4
- import 'package:perf_api/perf_api.dart' ;
5
4
6
5
// Temporary, please follow https://github.com/angular/angular.dart/issues/476
7
6
@MirrorsUsed (targets: const ['recipe_book' ], override: '*' )
@@ -78,7 +77,6 @@ class Recipe {
78
77
class MyAppModule extends Module {
79
78
MyAppModule () {
80
79
type (RecipeBookController );
81
- type (Profiler , implementedBy: Profiler ); // comment out to enable profiling
82
80
}
83
81
}
84
82
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ library recipe_book;
2
2
3
3
import 'package:angular/angular.dart' ;
4
4
import 'package:di/di.dart' ;
5
- import 'package:perf_api/perf_api.dart' ;
6
5
7
6
import 'package:angular_dart_demo/rating/rating_component.dart' ;
8
7
import 'package:angular_dart_demo/recipe_book.dart' ;
@@ -15,7 +14,6 @@ class MyAppModule extends Module {
15
14
MyAppModule () {
16
15
type (RecipeBookController );
17
16
type (RatingComponent );
18
- type (Profiler , implementedBy: Profiler ); // comment out to enable profiling
19
17
}
20
18
}
21
19
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ library recipe_book;
2
2
3
3
import 'package:angular/angular.dart' ;
4
4
import 'package:di/di.dart' ;
5
- import 'package:perf_api/perf_api.dart' ;
6
5
7
6
import 'package:angular_dart_demo/recipe_book.dart' ;
8
7
import 'package:angular_dart_demo/rating/rating_component.dart' ;
@@ -19,7 +18,6 @@ class MyAppModule extends Module {
19
18
type (RecipeBookController );
20
19
type (RatingComponent );
21
20
type (Tooltip );
22
- type (Profiler , implementedBy: Profiler ); // comment out to enable profiling
23
21
}
24
22
}
25
23
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ library recipe_book;
2
2
3
3
import 'package:angular/angular.dart' ;
4
4
import 'package:di/di.dart' ;
5
- import 'package:perf_api/perf_api.dart' ;
6
5
7
6
import 'package:angular_dart_demo/recipe_book.dart' ;
8
7
import 'package:angular_dart_demo/filter/category_filter.dart' ;
@@ -21,7 +20,6 @@ class MyAppModule extends Module {
21
20
type (RatingComponent );
22
21
type (Tooltip );
23
22
type (CategoryFilter );
24
- type (Profiler , implementedBy: Profiler ); // comment out to enable profiling
25
23
}
26
24
}
27
25
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import 'package:angular/angular.dart';
5
5
import 'package:angular/routing/module.dart' ;
6
6
import 'package:di/di.dart' ;
7
7
import 'package:logging/logging.dart' ;
8
- import 'package:perf_api/perf_api.dart' ;
9
8
10
9
import 'package:angular_dart_demo/recipe_book.dart' ;
11
10
import 'package:angular_dart_demo/filter/category_filter.dart' ;
@@ -28,7 +27,6 @@ class MyAppModule extends Module {
28
27
type (RatingComponent );
29
28
type (Tooltip );
30
29
type (CategoryFilter );
31
- type (Profiler , implementedBy: Profiler ); // comment out to enable profiling
32
30
type (SearchRecipeComponent );
33
31
type (ViewRecipeComponent );
34
32
type (QueryService );
Original file line number Diff line number Diff line change 1
- // Used by di codegen to identify instantiable types.
2
- @Injectables (const [
3
- Profiler
4
- ])
5
1
library recipe_book;
6
2
7
3
// Temporary, please follow https://github.com/angular/angular.dart/issues/476
@@ -16,7 +12,6 @@ import 'package:angular/routing/module.dart';
16
12
import 'package:di/di.dart' ;
17
13
import 'package:di/annotations.dart' ;
18
14
import 'package:logging/logging.dart' ;
19
- import 'package:perf_api/perf_api.dart' ;
20
15
21
16
import 'package:angular_dart_demo/recipe_book.dart' ;
22
17
import 'package:angular_dart_demo/filter/category_filter.dart' ;
@@ -40,7 +35,6 @@ class MyAppModule extends Module {
40
35
type (RatingComponent );
41
36
type (Tooltip );
42
37
type (CategoryFilter );
43
- type (Profiler , implementedBy: Profiler ); // comment out to enable profiling
44
38
type (SearchRecipeComponent );
45
39
type (ViewRecipeComponent );
46
40
type (QueryService );
You can’t perform that action at this time.
0 commit comments