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

Side by Side Diff: pkg/analyzer2dart/lib/src/modely.dart

Issue 746993002: Avoid patching in dart2dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 analyzer2dart.element_converter; 5 part of analyzer2dart.element_converter;
6 6
7 7
8 /// Base [dart2js.Element] implementation for converted analyzer elements. 8 /// Base [dart2js.Element] implementation for converted analyzer elements.
9 class ElementY extends dart2js.Element { 9 class ElementY extends dart2js.Element {
10 final ElementConverter converter; 10 final ElementConverter converter;
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 @override 133 @override
134 bool get isConst => unsupported('isConst'); 134 bool get isConst => unsupported('isConst');
135 135
136 @override 136 @override
137 bool get isDeferredLoaderGetter => unsupported('isDeferredLoaderGetter'); 137 bool get isDeferredLoaderGetter => unsupported('isDeferredLoaderGetter');
138 138
139 @override 139 @override
140 bool get isFactoryConstructor => unsupported('isFactoryConstructor'); 140 bool get isFactoryConstructor => unsupported('isFactoryConstructor');
141 141
142 @override 142 @override
143 bool get isForwardingConstructor => unsupported('isForwardingConstructor');
144
145 @override
146 bool get isInjected => unsupported('isInjected'); 143 bool get isInjected => unsupported('isInjected');
147 144
148 @override 145 @override
149 bool get isInstanceMember => unsupported('isInstanceMember'); 146 bool get isInstanceMember => unsupported('isInstanceMember');
150 147
151 @override 148 @override
152 bool get isMixinApplication => unsupported('isMixinApplication'); 149 bool get isMixinApplication => unsupported('isMixinApplication');
153 150
154 @override 151 @override
155 bool get isNative => unsupported('isNative'); 152 bool get isNative => unsupported('isNative');
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 return false; 337 return false;
341 } 338 }
342 339
343 // TODO(johnniwinther): Ensure the correct semantics of this. 340 // TODO(johnniwinther): Ensure the correct semantics of this.
344 @override 341 @override
345 bool get isAbstract => false; 342 bool get isAbstract => false;
346 } 343 }
347 344
348 abstract class FunctionElementMixin 345 abstract class FunctionElementMixin
349 implements ElementY, dart2js.FunctionElement { 346 implements ElementY, dart2js.FunctionElement {
347
348 // TODO(johnniwinther): Ensure the correct semantics of this.
349 @override
350 bool get isExternal => false;
351
350 @override 352 @override
351 get abstractField => unsupported('abstractField'); 353 get abstractField => unsupported('abstractField');
352 354
353 @override 355 @override
354 computeSignature(_) => unsupported('computeSignature'); 356 computeSignature(_) => unsupported('computeSignature');
355 357
356 @override 358 @override
357 get memberContext => unsupported('memberContext'); 359 get memberContext => unsupported('memberContext');
358 360
359 @override 361 @override
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 781
780 @override 782 @override
781 bool get isRedirectingFactory => unsupported('isRedirectingFactory'); 783 bool get isRedirectingFactory => unsupported('isRedirectingFactory');
782 784
783 @override 785 @override
784 get nestedClosures => unsupported('nestedClosures'); 786 get nestedClosures => unsupported('nestedClosures');
785 787
786 @override 788 @override
787 get type => unsupported('type'); 789 get type => unsupported('type');
788 } 790 }
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/compiler.dart » ('j') | pkg/compiler/lib/src/dart_backend/backend.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698