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

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: Rebase Created 5 years, 6 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
« no previous file with comments | « tool/input_sdk/patch/async_patch.dart ('k') | tool/input_sdk/private/constant_map.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/private/annotations.dart
diff --git a/tool/input_sdk/private/annotations.dart b/tool/input_sdk/private/annotations.dart
index 5e6cb0552ccd6d48d2ad21bbd407a2dd624389c5..188267e18c20441c5588c2a2e7c602c2d40af20b 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;
« no previous file with comments | « tool/input_sdk/patch/async_patch.dart ('k') | tool/input_sdk/private/constant_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698