4fcdc6ee19
R=gbracha@google.com Review URL: https://codereview.chromium.org//23172011 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26384 260f80e4-7a28-3924-810f-c04153c831b5
63 lines
2.0 KiB
Dart
63 lines
2.0 KiB
Dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
/**
|
|
* This library contains the definitions of annotations that provide additional
|
|
* semantic information about the program being annotated. These annotations are
|
|
* intended to be used by tools to provide a better user experience.
|
|
*
|
|
* ## Installing ##
|
|
*
|
|
* Use [pub][] to install this package. Add the following to your `pubspec.yaml`
|
|
* file.
|
|
*
|
|
* dependencies:
|
|
* meta: any
|
|
*
|
|
* Then run `pub install`.
|
|
*
|
|
* For more information, see the
|
|
* [meta package on pub.dartlang.org](http://pub.dartlang.org/packages/meta).
|
|
*
|
|
* [pub]: http://pub.dartlang.org
|
|
*/
|
|
library meta;
|
|
|
|
/**
|
|
* An annotation used to mark a class, field, getter, setter, method, top-level
|
|
* variable, or top-level function as one that should no longer be used. Tools
|
|
* can use this annotation to provide a warning on references to the marked
|
|
* element.
|
|
*/
|
|
const deprecated = const _Deprecated();
|
|
|
|
class _Deprecated {
|
|
const _Deprecated();
|
|
}
|
|
|
|
/**
|
|
* An annotation used to mark an instance member (method, field, getter or
|
|
* setter) as overriding an inherited class member. Tools can use this
|
|
* annotation to provide a warning if there is no overridden member.
|
|
*/
|
|
const override = const _Override();
|
|
|
|
class _Override {
|
|
const _Override();
|
|
}
|
|
|
|
/**
|
|
* An annotation used to mark a class that should be considered to implement
|
|
* every possible getter, setter and method. Tools can use this annotation to
|
|
* suppress warnings when there is no explicit implementation of a referenced
|
|
* member. Tools should provide a hint if this annotation is applied to a class
|
|
* that does not implement or inherit an implementation of the method
|
|
* [:noSuchMethod:] (other than the implementation in [Object]). Note that
|
|
* classes are not affected by the use of this annotation on a supertype.
|
|
*/
|
|
const proxy = const _Proxy();
|
|
|
|
class _Proxy {
|
|
const _Proxy();
|
|
} |