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

Side by Side Diff: pkg/compiler/lib/src/constants/expressions.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.constants.expressions; 5 library dart2js.constants.expressions;
6 6
7 import '../common.dart'; 7 import '../common.dart';
8 import '../constants/constant_system.dart'; 8 import '../constants/constant_system.dart';
9 import '../core_types.dart'; 9 import '../core_types.dart';
10 import '../dart_types.dart'; 10 import '../elements/resolution_types.dart';
11 import '../elements/elements.dart' 11 import '../elements/elements.dart'
12 show 12 show
13 ConstructorElement, 13 ConstructorElement,
14 FieldElement, 14 FieldElement,
15 FunctionElement, 15 FunctionElement,
16 PrefixElement, 16 PrefixElement,
17 VariableElement; 17 VariableElement;
18 import '../resolution/operators.dart'; 18 import '../resolution/operators.dart';
19 import '../tree/dartstring.dart' show DartString; 19 import '../tree/dartstring.dart' show DartString;
20 import '../universe/call_structure.dart' show CallStructure; 20 import '../universe/call_structure.dart' show CallStructure;
(...skipping 1867 matching lines...) Expand 10 before | Expand all | Expand 10 after
1888 visit(exp.name); 1888 visit(exp.name);
1889 if (exp.defaultValue != null) { 1889 if (exp.defaultValue != null) {
1890 sb.write(', defaultValue: '); 1890 sb.write(', defaultValue: ');
1891 visit(exp.defaultValue); 1891 visit(exp.defaultValue);
1892 } 1892 }
1893 sb.write(')'); 1893 sb.write(')');
1894 } 1894 }
1895 1895
1896 String toString() => sb.toString(); 1896 String toString() => sb.toString();
1897 } 1897 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/constants/constructors.dart ('k') | pkg/compiler/lib/src/constants/values.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698