| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 part of js_backend; | 5 part of js_backend; |
| 6 | 6 |
| 7 const JAVA_SCRIPT_CONSTANT_SYSTEM = const JavaScriptConstantSystem(); | 7 const JAVA_SCRIPT_CONSTANT_SYSTEM = const JavaScriptConstantSystem(); |
| 8 | 8 |
| 9 class JavaScriptBitNotOperation extends BitNotOperation { | 9 class JavaScriptBitNotOperation extends BitNotOperation { |
| 10 const JavaScriptBitNotOperation(); | 10 const JavaScriptBitNotOperation(); |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 result.add(keyList); | 336 result.add(keyList); |
| 337 } else { | 337 } else { |
| 338 // Add the keys individually to avoid generating an unused list constant | 338 // Add the keys individually to avoid generating an unused list constant |
| 339 // for the keys. | 339 // for the keys. |
| 340 result.addAll(keys); | 340 result.addAll(keys); |
| 341 } | 341 } |
| 342 result.addAll(values); | 342 result.addAll(values); |
| 343 return result; | 343 return result; |
| 344 } | 344 } |
| 345 } | 345 } |
| OLD | NEW |