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

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

Issue 1120623003: Add a flag to the element model to identify mixin applications. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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 | 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 // 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 @override 54 @override
55 List<InterfaceType> get interfaces => actualElement.interfaces; 55 List<InterfaceType> get interfaces => actualElement.interfaces;
56 56
57 @override 57 @override
58 bool get isAbstract => actualElement.isAbstract; 58 bool get isAbstract => actualElement.isAbstract;
59 59
60 @override 60 @override
61 bool get isEnum => actualElement.isEnum; 61 bool get isEnum => actualElement.isEnum;
62 62
63 @override 63 @override
64 bool get isMixinApplication => actualElement.isMixinApplication;
65
66 @override
64 bool get isOrInheritsProxy => actualElement.isOrInheritsProxy; 67 bool get isOrInheritsProxy => actualElement.isOrInheritsProxy;
65 68
66 @override 69 @override
67 bool get isProxy => actualElement.isProxy; 70 bool get isProxy => actualElement.isProxy;
68 71
69 @override 72 @override
70 bool get isTypedef => actualElement.isTypedef; 73 bool get isTypedef => actualElement.isTypedef;
71 74
72 @override 75 @override
73 bool get isValidMixin => actualElement.isValidMixin; 76 bool get isValidMixin => actualElement.isValidMixin;
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after
1094 DartType get type => actualElement.type; 1097 DartType get type => actualElement.type;
1095 } 1098 }
1096 /** 1099 /**
1097 * TODO(scheglov) invalid implementation 1100 * TODO(scheglov) invalid implementation
1098 */ 1101 */
1099 class WeakReference<T> { 1102 class WeakReference<T> {
1100 final T value; 1103 final T value;
1101 WeakReference(this.value); 1104 WeakReference(this.value);
1102 T get() => value; 1105 T get() => value;
1103 } 1106 }
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