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

Side by Side Diff: sdk/lib/_internal/js_runtime/lib/annotations.dart

Issue 1212513002: sdk files reorganization to make dart2js a proper package (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: renamed 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of _js_helper; 5 part of _js_helper;
6 6
7 /// Tells the optimizing compiler that the annotated method has no 7 /// Tells the optimizing compiler that the annotated method has no
8 /// side-effects. Allocations don't count as side-effects, since they can be 8 /// side-effects. Allocations don't count as side-effects, since they can be
9 /// dropped without changing the semantics of the program. 9 /// dropped without changing the semantics of the program.
10 /// 10 ///
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 } 49 }
50 50
51 /// Annotation that marks the declaration as a patch. 51 /// Annotation that marks the declaration as a patch.
52 const _Patch patch = const _Patch(null); 52 const _Patch patch = const _Patch(null);
53 53
54 /// Annotation that marks the declaration as a patch for the old emitter. 54 /// Annotation that marks the declaration as a patch for the old emitter.
55 const _Patch patch_old = const _Patch('old'); 55 const _Patch patch_old = const _Patch('old');
56 56
57 /// Annotation that marks the declaration as a patch for the new emitter. 57 /// Annotation that marks the declaration as a patch for the new emitter.
58 const _Patch patch_new = const _Patch('new'); 58 const _Patch patch_new = const _Patch('new');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698