| Index: tool/input_sdk/private/annotations.dart
|
| diff --git a/tool/input_sdk/private/annotations.dart b/tool/input_sdk/private/annotations.dart
|
| index 1e63cf99a61c7774b6d5735ea8915acc36ed0e16..b8aa67f4384dfcf0eb1ecb8e056ab0d002d51a6b 100644
|
| --- a/tool/input_sdk/private/annotations.dart
|
| +++ b/tool/input_sdk/private/annotations.dart
|
| @@ -4,13 +4,6 @@
|
|
|
| part of _js_helper;
|
|
|
| -/// Tells the optimizing compiler that the annotated method has no
|
| -/// side-effects.
|
| -/// Requires @NoInline() to function correctly.
|
| -class NoSideEffects {
|
| - const NoSideEffects();
|
| -}
|
| -
|
| /// Tells the optimizing compiler that the annotated method cannot throw.
|
| /// Requires @NoInline() to function correctly.
|
| class NoThrows {
|
| @@ -22,13 +15,6 @@ class NoInline {
|
| const NoInline();
|
| }
|
|
|
| -// Ensures that the annotated method is represented internally using
|
| -// IR nodes ([:value == true:]) or AST nodes ([:value == false:]).
|
| -class IrRepresentation {
|
| - final bool value;
|
| - const IrRepresentation(this.value);
|
| -}
|
| -
|
| /// Marks a class as native and defines its JavaScript name(s).
|
| class Native {
|
| final String name;
|
|
|