Chromium Code Reviews| Index: sdk/lib/html/html_common/metadata.dart |
| diff --git a/sdk/lib/html/html_common/metadata.dart b/sdk/lib/html/html_common/metadata.dart |
| index d77557de4ba944d97f3c33a0b8b500e6e954085a..23fa4b50d836926a9ef37eeccd7e9f982f646d1b 100644 |
| --- a/sdk/lib/html/html_common/metadata.dart |
| +++ b/sdk/lib/html/html_common/metadata.dart |
| @@ -54,6 +54,15 @@ class DomName { |
| } |
| -/// Metadata that specifies that that member is editable through generated |
| -/// files. |
| +/** |
| + * Metadata that specifies that that member is editable through generated |
|
Andrei Mouravski
2013/05/22 10:07:00
"Annotation that specifies that a member is editab
blois
2013/05/22 17:59:10
Wasn't this your doc comment?
|
| + * files. |
| + */ |
| class DocsEditable {} |
| + |
| + |
| +/** |
| + * Annotation which indicates that an API is not expected to change but has |
|
Andrei Mouravski
2013/05/22 10:07:00
We need style guide for metadata doc comments...
blois
2013/05/22 17:59:10
Done.
|
| + * not undergone enough testing to be considered stable. |
| + */ |
| +class Unstable {} |