| OLD | NEW |
| 1 library mirror_loader_test2; | 1 library mirror_loader_test2; |
| 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> {} |
| OLD | NEW |