| 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.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, Compiler; | 9 import '../dart2jslib.dart' show assertDebugMode, Compiler; |
| 10 import '../dart_types.dart'; | 10 import '../dart_types.dart'; |
| (...skipping 1864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1875 visit(exp.name); | 1875 visit(exp.name); |
| 1876 if (exp.defaultValue != null) { | 1876 if (exp.defaultValue != null) { |
| 1877 sb.write(', defaultValue: '); | 1877 sb.write(', defaultValue: '); |
| 1878 visit(exp.defaultValue); | 1878 visit(exp.defaultValue); |
| 1879 } | 1879 } |
| 1880 sb.write(')'); | 1880 sb.write(')'); |
| 1881 } | 1881 } |
| 1882 | 1882 |
| 1883 String toString() => sb.toString(); | 1883 String toString() => sb.toString(); |
| 1884 } | 1884 } |
| OLD | NEW |