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

Side by Side Diff: pkg/analyzer/lib/src/generated/element_handle.dart

Issue 1158793004: Add isExternal accessor to element model (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: 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) 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 // This code was auto-generated, is not intended to be edited, and is subject to 5 // This code was auto-generated, is not intended to be edited, and is subject to
6 // significant change. Please see the README file for more information. 6 // significant change. Please see the README file for more information.
7 7
8 library engine.element_handle; 8 library engine.element_handle;
9 9
10 import 'ast.dart'; 10 import 'ast.dart';
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 @override 514 @override
515 List<FunctionElement> get functions => actualElement.functions; 515 List<FunctionElement> get functions => actualElement.functions;
516 516
517 @override 517 @override
518 bool get isAbstract => actualElement.isAbstract; 518 bool get isAbstract => actualElement.isAbstract;
519 519
520 @override 520 @override
521 bool get isAsynchronous => actualElement.isAsynchronous; 521 bool get isAsynchronous => actualElement.isAsynchronous;
522 522
523 @override 523 @override
524 bool get isExternal => actualElement.isExternal;
525
526 @override
524 bool get isGenerator => actualElement.isGenerator; 527 bool get isGenerator => actualElement.isGenerator;
525 528
526 @override 529 @override
527 bool get isOperator => actualElement.isOperator; 530 bool get isOperator => actualElement.isOperator;
528 531
529 @override 532 @override
530 bool get isStatic => actualElement.isStatic; 533 bool get isStatic => actualElement.isStatic;
531 534
532 @override 535 @override
533 bool get isSynchronous => actualElement.isSynchronous; 536 bool get isSynchronous => actualElement.isSynchronous;
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
1102 DartType get type => actualElement.type; 1105 DartType get type => actualElement.type;
1103 } 1106 }
1104 /** 1107 /**
1105 * TODO(scheglov) invalid implementation 1108 * TODO(scheglov) invalid implementation
1106 */ 1109 */
1107 class WeakReference<T> { 1110 class WeakReference<T> {
1108 final T value; 1111 final T value;
1109 WeakReference(this.value); 1112 WeakReference(this.value);
1110 T get() => value; 1113 T get() => value;
1111 } 1114 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/element.dart ('k') | pkg/analyzer/lib/src/generated/resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698