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

Side by Side Diff: packages/polymer/test/sort_registration_part1.dart

Issue 2312183003: Removed Polymer from Observatory deps (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 part of polymer.test.sort_registration_test;
6
7 // D will be registered after B below.
8 @CustomTag('x-d')
9 class D extends B {
10 D.created() : super.created();
11 }
12
13 @CustomTag('x-b')
14 class B extends A {
15 B.created() : super.created();
16 }
17
18 // C is declared in another file, but it will be registered after B and before E
19 @CustomTag('x-e')
20 class E extends C {
21 E.created() : super.created();
22 }
OLDNEW
« no previous file with comments | « packages/polymer/test/register_test.html ('k') | packages/polymer/test/sort_registration_part2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698