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

Side by Side Diff: pkg/observe/lib/mirrors_used.dart

Issue 817483003: delete observe from the repo (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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/observe/lib/html.dart ('k') | pkg/observe/lib/observe.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 /// An empty library that declares what needs to be retained with [MirrorsUsed]
6 /// if you were to use observables together with mirrors. By default this is not
7 /// included because frameworks using this package also use code generation to
8 /// avoid using mirrors at deploy time.
9 library observe.mirrors_used;
10
11 // Note: ObservableProperty is in this list only for the unusual use case of
12 // invoking dart2js without running this package's transformers. The
13 // transformer in `lib/transformer.dart` will replace @observable with the
14 // @reflectable annotation.
15 @MirrorsUsed(metaTargets: const [Reflectable, ObservableProperty],
16 override: 'smoke.mirrors')
17 import 'dart:mirrors' show MirrorsUsed;
18 import 'package:observe/observe.dart' show Reflectable, ObservableProperty;
OLDNEW
« no previous file with comments | « pkg/observe/lib/html.dart ('k') | pkg/observe/lib/observe.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698