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

Side by Side Diff: pkg/compiler/lib/src/resolution/signatures.dart

Issue 2606253002: Move dart_types to elements/resolution_types (Closed)
Patch Set: Created 3 years, 11 months 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
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 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
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 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/send_structure.dart ('k') | pkg/compiler/lib/src/resolution/tree_elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698