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

Side by Side Diff: tool/input_sdk/lib/html/html_common/metadata.dart

Issue 1528613004: First cut of mini dart:html. (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Fix build_sdk Created 5 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
OLDNEW
(Empty)
1 // Copyright (c) 2012, 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 library metadata;
6
7 /**
8 * An annotation used to mark a feature as only being supported by a subset
9 * of the browsers that Dart supports by default.
10 *
11 * If an API is not annotated with [SupportedBrowser] then it is assumed to
12 * work on all browsers Dart supports.
13 */
14 class SupportedBrowser {
15 static const String CHROME = "Chrome";
16 static const String FIREFOX = "Firefox";
17 static const String IE = "Internet Explorer";
18 static const String OPERA = "Opera";
19 static const String SAFARI = "Safari";
20
21 /// The name of the browser.
22 final String browserName;
23 /// The minimum version of the browser that supports the feature, or null
24 /// if supported on all versions.
25 final String minimumVersion;
26
27 const SupportedBrowser(this.browserName, [this.minimumVersion]);
28 }
29
30
31 /**
32 * An annotation used to mark an API as being experimental.
33 *
34 * An API is considered to be experimental if it is still going through the
35 * process of stabilizing and is subject to change or removal.
36 *
37 * See also:
38 *
39 * * [W3C recommendation](http://en.wikipedia.org/wiki/W3C_recommendation)
40 */
41 class Experimental {
42 const Experimental();
43 }
44
45
46 /**
47 * Annotation that specifies that a member is editable through generate files.
48 *
49 * This is used for API generation.
50 *
51 * [name] should be formatted as `interface.member`.
52 */
53 class DomName {
54 final String name;
55 const DomName(this.name);
56 }
57
58
59 /**
60 * Metadata that specifies that that member is editable through generated
61 * files.
62 */
63 class DocsEditable {
64 const DocsEditable();
65 }
66
67
68 /**
69 * Annotation that indicates that an API is not expected to change but has
70 * not undergone enough testing to be considered stable.
71 */
72 class Unstable {
73 const Unstable();
74 }
OLDNEW
« no previous file with comments | « tool/input_sdk/lib/html/html_common/lists.dart ('k') | tool/input_sdk/lib/js/dart2js/js_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698