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

Side by Side Diff: pkg/compiler/lib/src/constants/expressions.dart

Issue 1284593003: Remove dart2jslib.dart (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 '../constants/constant_system.dart'; 7 import '../constants/constant_system.dart';
8 import '../core_types.dart'; 8 import '../core_types.dart';
9 import '../dart2jslib.dart' show assertDebugMode;
10 import '../dart_types.dart'; 9 import '../dart_types.dart';
10 import '../diagnostics/invariant.dart' show
11 assertDebugMode;
11 import '../elements/elements.dart' show 12 import '../elements/elements.dart' show
12 ConstructorElement, 13 ConstructorElement,
13 Element, 14 Element,
14 FieldElement, 15 FieldElement,
15 FunctionElement, 16 FunctionElement,
16 PrefixElement, 17 PrefixElement,
17 VariableElement; 18 VariableElement;
18 import '../resolution/operators.dart'; 19 import '../resolution/operators.dart';
19 import '../tree/tree.dart' show DartString; 20 import '../tree/tree.dart' show DartString;
20 import '../universe/universe.dart' show CallStructure; 21 import '../universe/universe.dart' show CallStructure;
(...skipping 1576 matching lines...) Expand 10 before | Expand all | Expand 10 after
1597 visit(exp.name); 1598 visit(exp.name);
1598 if (exp.defaultValue != null) { 1599 if (exp.defaultValue != null) {
1599 sb.write(', defaultValue: '); 1600 sb.write(', defaultValue: ');
1600 visit(exp.defaultValue); 1601 visit(exp.defaultValue);
1601 } 1602 }
1602 sb.write(')'); 1603 sb.write(')');
1603 } 1604 }
1604 1605
1605 String toString() => sb.toString(); 1606 String toString() => sb.toString();
1606 } 1607 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/constants/evaluation.dart ('k') | pkg/compiler/lib/src/constants/values.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698