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

Side by Side Diff: test_reflectable/test/meta_reflectors_definer.dart

Issue 1391543003: Creates `reflectors`, as a meta-meta feature that enables dynamic selection of a "mirror system". (Closed) Base URL: https://github.com/dart-lang/reflectable.git@master
Patch Set: Review response. Created 5 years, 2 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) 2015, the Dart Team. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in
3 // the LICENSE file.
4
5 /// File being transformed by the reflectable transformer.
6 /// Part of the entry point 'reflectors_test.dart'.
7 ///
8 /// Independence: This library defines reflectors only, and it does not depend
9 /// on domain classes (`M1..3, A..D, P`) nor on the usage of reflection, i.e.,
10 /// these reflectors could have been defined in a third-party package .
11 library test_reflectable.test.meta_reflectors_definer;
12
13 import "package:reflectable/reflectable.dart";
14
15 class Reflector extends Reflectable {
16 const Reflector()
17 : super(invokingCapability, declarationsCapability, libraryCapability);
18 }
19
20 class Reflector2 extends Reflectable {
21 const Reflector2()
22 : super(invokingCapability, metadataCapability, libraryCapability);
23 }
24
25 class ReflectorUpwardsClosed extends Reflectable {
26 const ReflectorUpwardsClosed()
27 : super(superclassQuantifyCapability, invokingCapability,
28 declarationsCapability, typeRelationsCapability);
29 }
OLDNEW
« no previous file with comments | « test_reflectable/test/meta_reflector_test.dart ('k') | test_reflectable/test/meta_reflectors_domain.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698