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

Side by Side Diff: pkg/polymer/test/mirror_loader_4.dart

Issue 232373002: pkg/polymer[_expressions] unittest fixes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: oops Created 6 years, 8 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
« no previous file with comments | « pkg/polymer/test/mirror_loader_3.dart ('k') | pkg/polymer/test/mirror_loader_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library mirror_loader_test4; 1 library mirror_loader_test4;
2 2
3 import 'dart:html';
4 import 'package:polymer/polymer.dart'; 3 import 'package:polymer/polymer.dart';
5 4
6 @CustomTag('x-a') 5 @CustomTag('x-a')
7 class XA extends PolymerElement { 6 class XA extends PolymerElement {
8 final String x = "a"; 7 final String x = "a";
9 XA.created() : super.created(); 8 XA.created() : super.created();
10 } 9 }
11 10
12 // The next classes are here as a regression test for darbug.com/17929. Our 11 // The next classes are here as a regression test for darbug.com/17929. Our
13 // loader was incorrectly trying to retrieve the reflectiveType of these 12 // loader was incorrectly trying to retrieve the reflectiveType of these
14 // classes. 13 // classes.
15 class Foo<T> {} 14 class Foo<T> {}
16 15
17 @CustomTag('x-b') 16 @CustomTag('x-b')
18 class XB<T> extends PolymerElement { 17 class XB<T> extends PolymerElement {
19 final String x = "a"; 18 final String x = "a";
20 XB.created() : super.created(); 19 XB.created() : super.created();
21 } 20 }
OLDNEW
« no previous file with comments | « pkg/polymer/test/mirror_loader_3.dart ('k') | pkg/polymer/test/mirror_loader_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698