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

Side by Side Diff: pkg/compiler/lib/src/resolution/secret_tree_element.dart

Issue 1284593003: Remove dart2jslib.dart (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 /** 5 /**
6 * Encapsulates the field [TreeElementMixin._element]. 6 * Encapsulates the field [TreeElementMixin._element].
7 * 7 *
8 * This library is an implementation detail of dart2js, and should not 8 * This library is an implementation detail of dart2js, and should not
9 * be imported except by resolution and tree node libraries, or for 9 * be imported except by resolution and tree node libraries, or for
10 * testing. 10 * testing.
11 * 11 *
12 * We have taken great care to ensure AST nodes can be cached between 12 * We have taken great care to ensure AST nodes can be cached between
13 * compiler instances. Part of this requires that we always access 13 * compiler instances. Part of this requires that we always access
14 * resolution results through TreeElements. 14 * resolution results through TreeElements.
15 * 15 *
16 * So please, do not add additional elements to this library, and do 16 * So please, do not add additional elements to this library, and do
17 * not import it. 17 * not import it.
18 */ 18 */
19 library secret_tree_element; 19 library secret_tree_element;
20 20
21 import '../dart2jslib.dart' show invariant; 21 import '../diagnostics/invariant.dart' show invariant;
22 import '../util/util.dart' show Spannable; 22 import '../diagnostics/spannable.dart' show Spannable;
23 23
24 /// Interface for associating 24 /// Interface for associating
25 abstract class TreeElementMixin { 25 abstract class TreeElementMixin {
26 Object get _element; 26 Object get _element;
27 void set _element(Object value); 27 void set _element(Object value);
28 } 28 }
29 29
30 /// Null implementation of [TreeElementMixin] which does not allow association 30 /// Null implementation of [TreeElementMixin] which does not allow association
31 /// of elements. 31 /// of elements.
32 /// 32 ///
(...skipping 26 matching lines...) Expand all
59 */ 59 */
60 Object getTreeElement(TreeElementMixin node) => node._element; 60 Object getTreeElement(TreeElementMixin node) => node._element;
61 61
62 /** 62 /**
63 * Do not call this method directly. Instead, use an instance of 63 * Do not call this method directly. Instead, use an instance of
64 * TreeElements. 64 * TreeElements.
65 */ 65 */
66 void setTreeElement(TreeElementMixin node, Object value) { 66 void setTreeElement(TreeElementMixin node, Object value) {
67 node._element = value; 67 node._element = value;
68 } 68 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/resolution.dart ('k') | pkg/compiler/lib/src/resolution/semantic_visitor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698