| 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 6800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6811 * browser. | 6811 * browser. |
| 6812 */ | 6812 */ |
| 6813 bool get isBrowserApplication; | 6813 bool get isBrowserApplication; |
| 6814 | 6814 |
| 6815 /** | 6815 /** |
| 6816 * Return `true` if this library is the dart:core library. | 6816 * Return `true` if this library is the dart:core library. |
| 6817 */ | 6817 */ |
| 6818 bool get isDartCore; | 6818 bool get isDartCore; |
| 6819 | 6819 |
| 6820 /** | 6820 /** |
| 6821 * Return `true` if this library is the dart:core library. | 6821 * Return `true` if this library is part of the SDK. |
| 6822 */ | 6822 */ |
| 6823 bool get isInSdk; | 6823 bool get isInSdk; |
| 6824 | 6824 |
| 6825 /** | 6825 /** |
| 6826 * Return the element representing the synthetic function `loadLibrary` that | 6826 * Return the element representing the synthetic function `loadLibrary` that |
| 6827 * is implicitly defined for this library if the library is imported using a | 6827 * is implicitly defined for this library if the library is imported using a |
| 6828 * deferred import. | 6828 * deferred import. |
| 6829 */ | 6829 */ |
| 6830 FunctionElement get loadLibraryFunction; | 6830 FunctionElement get loadLibraryFunction; |
| 6831 | 6831 |
| (...skipping 3692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10524 // void <: void (by reflexivity) | 10524 // void <: void (by reflexivity) |
| 10525 // bottom <: void (as bottom is a subtype of all types). | 10525 // bottom <: void (as bottom is a subtype of all types). |
| 10526 // void <: dynamic (as dynamic is a supertype of all types) | 10526 // void <: dynamic (as dynamic is a supertype of all types) |
| 10527 return identical(type, this) || type.isDynamic; | 10527 return identical(type, this) || type.isDynamic; |
| 10528 } | 10528 } |
| 10529 | 10529 |
| 10530 @override | 10530 @override |
| 10531 VoidTypeImpl substitute2( | 10531 VoidTypeImpl substitute2( |
| 10532 List<DartType> argumentTypes, List<DartType> parameterTypes) => this; | 10532 List<DartType> argumentTypes, List<DartType> parameterTypes) => this; |
| 10533 } | 10533 } |
| OLD | NEW |