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

Side by Side Diff: pkg/compiler/lib/src/serialization/modelz.dart

Issue 1318043005: Support user generated custom native JS classes. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: about to land Created 5 years, 2 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
« no previous file with comments | « pkg/compiler/lib/src/patch_parser.dart ('k') | pkg/compiler/lib/src/ssa/builder.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 /// Implementation of the element model used for deserialiation. 5 /// Implementation of the element model used for deserialiation.
6 /// 6 ///
7 /// These classes are created by [ElementDeserializer] triggered by the 7 /// These classes are created by [ElementDeserializer] triggered by the
8 /// [Deserializer]. 8 /// [Deserializer].
9 9
10 library dart2js.serialization.modelz; 10 library dart2js.serialization.modelz;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 @override 130 @override
131 bool get isLocal => false; 131 bool get isLocal => false;
132 132
133 @override 133 @override
134 bool get isMixinApplication => false; 134 bool get isMixinApplication => false;
135 135
136 @override 136 @override
137 bool get isNative => false; 137 bool get isNative => false;
138 138
139 @override 139 @override
140 bool get isJsInterop => false;
141
142 @override
143 String get jsInteropName => null;
144
145 @override
140 bool get isOperator => false; 146 bool get isOperator => false;
141 147
142 @override 148 @override
143 bool get isStatic => false; 149 bool get isStatic => false;
144 150
145 // TODO(johnniwinther): Find a more precise semantics for this. 151 // TODO(johnniwinther): Find a more precise semantics for this.
146 @override 152 @override
147 bool get isSynthesized => true; 153 bool get isSynthesized => true;
148 154
149 @override 155 @override
(...skipping 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after
1566 } 1572 }
1567 1573
1568 @override 1574 @override
1569 ElementKind get kind => ElementKind.PREFIX; 1575 ElementKind get kind => ElementKind.PREFIX;
1570 1576
1571 @override 1577 @override
1572 Element lookupLocalMember(String memberName) { 1578 Element lookupLocalMember(String memberName) {
1573 return _unsupported('lookupLocalMember'); 1579 return _unsupported('lookupLocalMember');
1574 } 1580 }
1575 } 1581 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/patch_parser.dart ('k') | pkg/compiler/lib/src/ssa/builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698