Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: third_party/pkg/angular/test/io/test_files/templates/main.dart

Issue 176943008: Update the Angular/DI tests to latest from github. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 library test_files.main; 1 library test_files.main;
2 2
3 import 'package:angular/core/module.dart'; 3 import 'package:angular/core/module.dart';
4 import 'package:angular/tools/template_cache_annotation.dart'; 4 import 'package:angular/tools/template_cache_annotation.dart';
5 5
6 @NgComponent( 6 @NgComponent(
7 selector: 'my-component', 7 selector: 'my-component',
8 templateUrl: 'test/io/test_files/templates/main.html' 8 templateUrl: '/test/io/test_files/templates/main.html')
9 )
10 @NgTemplateCache() 9 @NgTemplateCache()
11 class MyComponent { 10 class MyComponent
11 {
12 } 12 }
13 13
14 @NgComponent( 14 @NgComponent(
15 selector: 'my-component2', 15 selector: 'my-component2',
16 templateUrl: 'test/io/test_files/templates/dont.html' 16 templateUrl: '/test/io/test_files/templates/dont.html')
17 )
18 @NgTemplateCache(cache: false) 17 @NgTemplateCache(cache: false)
19 class MyComponent2 { 18 class MyComponent2
19 {
20 } 20 }
21 21
22 22
23 @NgComponent( 23 @NgComponent(
24 selector: 'my-component3', 24 selector: 'my-component3',
25 templateUrl: 'test/io/test_files/templates/dont.html' 25 templateUrl: '/test/io/test_files/templates/dont.html')
26 )
27 @NgTemplateCache(cache: true) 26 @NgTemplateCache(cache: true)
28 class MyComponent3 { 27 class MyComponent3
28 {
29 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698