| 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 library dart2js.resolution.signatures; | 5 library dart2js.resolution.signatures; |
| 6 | 6 |
| 7 import '../common.dart'; | 7 import '../common.dart'; |
| 8 import '../common/resolution.dart'; | 8 import '../common/resolution.dart'; |
| 9 import '../elements/resolution_types.dart'; | 9 import '../elements/resolution_types.dart'; |
| 10 import '../elements/elements.dart'; | 10 import '../elements/elements.dart'; |
| 11 import '../elements/entities.dart' show AsyncMarker; |
| 11 import '../elements/modelx.dart' | 12 import '../elements/modelx.dart' |
| 12 show | 13 show |
| 13 ErroneousFieldElementX, | 14 ErroneousFieldElementX, |
| 14 ErroneousInitializingFormalElementX, | 15 ErroneousInitializingFormalElementX, |
| 15 FormalElementX, | 16 FormalElementX, |
| 16 FunctionSignatureX, | 17 FunctionSignatureX, |
| 17 InitializingFormalElementX, | 18 InitializingFormalElementX, |
| 18 LocalParameterElementX, | 19 LocalParameterElementX, |
| 19 TypeVariableElementX; | 20 TypeVariableElementX; |
| 20 import '../elements/names.dart'; | 21 import '../elements/names.dart'; |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 /// variables of the function signature itself when its signature is analyzed. | 505 /// variables of the function signature itself when its signature is analyzed. |
| 505 class FunctionSignatureBuildingScope extends TypeVariablesScope { | 506 class FunctionSignatureBuildingScope extends TypeVariablesScope { |
| 506 @override | 507 @override |
| 507 final List<ResolutionDartType> typeVariables; | 508 final List<ResolutionDartType> typeVariables; |
| 508 | 509 |
| 509 FunctionSignatureBuildingScope(Scope parent, this.typeVariables) | 510 FunctionSignatureBuildingScope(Scope parent, this.typeVariables) |
| 510 : super(parent); | 511 : super(parent); |
| 511 | 512 |
| 512 String toString() => 'FunctionSignatureBuildingScope($typeVariables)'; | 513 String toString() => 'FunctionSignatureBuildingScope($typeVariables)'; |
| 513 } | 514 } |
| OLD | NEW |