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

Unified Diff: tool/input_sdk/private/annotations.dart

Issue 1152333009: Delete dart2js specific private library code (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 7 months 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 side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698