| 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 #library('js_helper'); | 5 #library('js_helper'); |
| 6 | 6 |
| 7 #import('coreimpl.dart'); | 7 #import('coreimpl.dart'); |
| 8 | 8 |
| 9 #source('constant_map.dart'); | 9 #source('constant_map.dart'); |
| 10 #source('regexp_helper.dart'); | 10 #source('regexp_helper.dart'); |
| (...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1361 /** | 1361 /** |
| 1362 * Represents the type of Null. The compiler treats this specially. | 1362 * Represents the type of Null. The compiler treats this specially. |
| 1363 */ | 1363 */ |
| 1364 class Null { | 1364 class Null { |
| 1365 factory Null() { | 1365 factory Null() { |
| 1366 throw new UnsupportedOperationException('new Null()'); | 1366 throw new UnsupportedOperationException('new Null()'); |
| 1367 } | 1367 } |
| 1368 } | 1368 } |
| 1369 | 1369 |
| 1370 builtin$get$toString(receiver) => () => builtin$toString$0(receiver); | 1370 builtin$get$toString(receiver) => () => builtin$toString$0(receiver); |
| 1371 | |
| 1372 builtin$copyFrom$4(receiver, arg1, arg2, arg3, arg4) { | |
| 1373 // TODO(ahe): Remove this method when CL 9839101 has landed. | |
| 1374 if (!isJsArray(receiver)) { | |
| 1375 return UNINTERCEPTED(receiver.copyFrom(arg1, arg2, arg3, arg4)); | |
| 1376 } | |
| 1377 throw new UnsupportedOperationException('copyFrom'); | |
| 1378 } | |
| OLD | NEW |