| 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 '../dart_types.dart'; | 9 import '../elements/resolution_types.dart'; |
| 10 import '../elements/elements.dart'; | 10 import '../elements/elements.dart'; |
| 11 import '../elements/modelx.dart' | 11 import '../elements/modelx.dart' |
| 12 show | 12 show |
| 13 ErroneousFieldElementX, | 13 ErroneousFieldElementX, |
| 14 ErroneousInitializingFormalElementX, | 14 ErroneousInitializingFormalElementX, |
| 15 FormalElementX, | 15 FormalElementX, |
| 16 FunctionSignatureX, | 16 FunctionSignatureX, |
| 17 InitializingFormalElementX, | 17 InitializingFormalElementX, |
| 18 LocalParameterElementX, | 18 LocalParameterElementX, |
| 19 TypeVariableElementX; | 19 TypeVariableElementX; |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 /// variables of the function signature itself when its signature is analyzed. | 482 /// variables of the function signature itself when its signature is analyzed. |
| 483 class FunctionSignatureBuildingScope extends TypeVariablesScope { | 483 class FunctionSignatureBuildingScope extends TypeVariablesScope { |
| 484 @override | 484 @override |
| 485 final List<DartType> typeVariables; | 485 final List<DartType> typeVariables; |
| 486 | 486 |
| 487 FunctionSignatureBuildingScope(Scope parent, this.typeVariables) | 487 FunctionSignatureBuildingScope(Scope parent, this.typeVariables) |
| 488 : super(parent); | 488 : super(parent); |
| 489 | 489 |
| 490 String toString() => 'FunctionSignatureBuildingScope($typeVariables)'; | 490 String toString() => 'FunctionSignatureBuildingScope($typeVariables)'; |
| 491 } | 491 } |
| OLD | NEW |