| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |