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

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

Issue 812333002: Fix analyzer2dart end2end. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix latent crash in modely. Created 6 years 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
« no previous file with comments | « pkg/analyzer2dart/lib/src/driver.dart ('k') | pkg/analyzer2dart/lib/src/tree_shaker.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) 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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 } 343 }
344 344
345 abstract class FunctionElementMixin 345 abstract class FunctionElementMixin
346 implements ElementY, dart2js.FunctionElement { 346 implements ElementY, dart2js.FunctionElement {
347 347
348 // TODO(johnniwinther): Ensure the correct semantics of this. 348 // TODO(johnniwinther): Ensure the correct semantics of this.
349 @override 349 @override
350 bool get isExternal => false; 350 bool get isExternal => false;
351 351
352 @override 352 @override
353 bool get isConst => false;
354
355 @override
353 get abstractField => unsupported('abstractField'); 356 get abstractField => unsupported('abstractField');
354 357
355 @override 358 @override
356 computeSignature(_) => unsupported('computeSignature'); 359 computeSignature(_) => unsupported('computeSignature');
357 360
358 @override 361 @override
359 get memberContext => unsupported('memberContext'); 362 get memberContext => unsupported('memberContext');
360 363
361 @override 364 @override
362 get functionSignature => unsupported('functionSignature'); 365 get functionSignature => unsupported('functionSignature');
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 790
788 @override 791 @override
789 bool get isRedirectingFactory => unsupported('isRedirectingFactory'); 792 bool get isRedirectingFactory => unsupported('isRedirectingFactory');
790 793
791 @override 794 @override
792 get nestedClosures => unsupported('nestedClosures'); 795 get nestedClosures => unsupported('nestedClosures');
793 796
794 @override 797 @override
795 get type => unsupported('type'); 798 get type => unsupported('type');
796 } 799 }
OLDNEW
« no previous file with comments | « pkg/analyzer2dart/lib/src/driver.dart ('k') | pkg/analyzer2dart/lib/src/tree_shaker.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698