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

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

Issue 225043004: Replace bootstrap logic with 'boot.js', use 'component/dart' mime-type and add (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
OLDNEW
(Empty)
1 library mirror_loader_test2;
2
3 import 'dart:html';
4 import 'package:polymer/polymer.dart';
5
6 @CustomTag('x-a')
7 class XA extends PolymerElement {
8 final String x = "a";
9 XA.created() : super.created();
10 }
11
12 // 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
14 // classes.
15 class Foo<T> {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698