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

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

Issue 745513003: Match enums, class type alias, type parameters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 | « no previous file | pkg/analyzer/lib/src/generated/incremental_resolver.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 // 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; 8 library engine.element;
9 9
10 import 'dart:collection'; 10 import 'dart:collection';
(...skipping 2381 matching lines...) Expand 10 before | Expand all | Expand 10 after
2392 return type; 2392 return type;
2393 } 2393 }
2394 } 2394 }
2395 return null; 2395 return null;
2396 } 2396 }
2397 2397
2398 @override 2398 @override
2399 void visitChildren(ElementVisitor visitor) { 2399 void visitChildren(ElementVisitor visitor) {
2400 super.visitChildren(visitor); 2400 super.visitChildren(visitor);
2401 safelyVisitChildren(_accessors, visitor); 2401 safelyVisitChildren(_accessors, visitor);
2402 safelyVisitChildren(_enums, visitor);
2402 safelyVisitChildren(_functions, visitor); 2403 safelyVisitChildren(_functions, visitor);
2403 safelyVisitChildren(_typeAliases, visitor); 2404 safelyVisitChildren(_typeAliases, visitor);
2404 safelyVisitChildren(_types, visitor); 2405 safelyVisitChildren(_types, visitor);
2405 safelyVisitChildren(_variables, visitor); 2406 safelyVisitChildren(_variables, visitor);
2406 safelyVisitChildren(_angularViews, visitor); 2407 safelyVisitChildren(_angularViews, visitor);
2407 } 2408 }
2408 2409
2409 /** 2410 /**
2410 * Returns the associated toolkit objects. 2411 * Returns the associated toolkit objects.
2411 * 2412 *
(...skipping 10081 matching lines...) Expand 10 before | Expand all | Expand 10 after
12493 // bottom <: void (as bottom is a subtype of all types). 12494 // bottom <: void (as bottom is a subtype of all types).
12494 // void <: dynamic (as dynamic is a supertype of all types) 12495 // void <: dynamic (as dynamic is a supertype of all types)
12495 return identical(type, this) || type.isDynamic; 12496 return identical(type, this) || type.isDynamic;
12496 } 12497 }
12497 12498
12498 @override 12499 @override
12499 VoidTypeImpl substitute2(List<DartType> argumentTypes, 12500 VoidTypeImpl substitute2(List<DartType> argumentTypes,
12500 List<DartType> parameterTypes) => 12501 List<DartType> parameterTypes) =>
12501 this; 12502 this;
12502 } 12503 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/generated/incremental_resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698