| OLD | NEW |
| 1 library html; | 1 library html; |
| 2 | 2 |
| 3 import 'dart:isolate'; | 3 import 'dart:isolate'; |
| 4 import 'dart:json'; | 4 import 'dart:json'; |
| 5 import 'dart:svg' as svg; | 5 import 'dart:svg' as svg; |
| 6 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7 // for details. All rights reserved. Use of this source code is governed by a | 7 // for details. All rights reserved. Use of this source code is governed by a |
| 8 // BSD-style license that can be found in the LICENSE file. | 8 // BSD-style license that can be found in the LICENSE file. |
| 9 | 9 |
| 10 // DO NOT EDIT | 10 // DO NOT EDIT |
| (...skipping 11491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11502 LocalWindowEvents get on => | 11502 LocalWindowEvents get on => |
| 11503 new LocalWindowEvents(this); | 11503 new LocalWindowEvents(this); |
| 11504 | 11504 |
| 11505 static const int PERSISTENT = 1; | 11505 static const int PERSISTENT = 1; |
| 11506 | 11506 |
| 11507 static const int TEMPORARY = 0; | 11507 static const int TEMPORARY = 0; |
| 11508 | 11508 |
| 11509 /** @domName Window.applicationCache */ | 11509 /** @domName Window.applicationCache */ |
| 11510 final DOMApplicationCache applicationCache; | 11510 final DOMApplicationCache applicationCache; |
| 11511 | 11511 |
| 11512 /** @domName Window.clientInformation */ | |
| 11513 final Navigator clientInformation; | |
| 11514 | |
| 11515 /** @domName Window.closed */ | 11512 /** @domName Window.closed */ |
| 11516 final bool closed; | 11513 final bool closed; |
| 11517 | 11514 |
| 11518 /** @domName Window.console */ | 11515 /** @domName Window.console */ |
| 11519 final Console console; | 11516 final Console console; |
| 11520 | 11517 |
| 11521 /** @domName Window.crypto */ | 11518 /** @domName Window.crypto */ |
| 11522 final Crypto crypto; | 11519 final Crypto crypto; |
| 11523 | 11520 |
| 11524 /** @domName Window.defaultStatus */ | 11521 /** @domName Window.defaultStatus */ |
| (...skipping 13327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 24852 if (length < 0) throw new ArgumentError('length'); | 24849 if (length < 0) throw new ArgumentError('length'); |
| 24853 if (start < 0) throw new RangeError.value(start); | 24850 if (start < 0) throw new RangeError.value(start); |
| 24854 int end = start + length; | 24851 int end = start + length; |
| 24855 if (end > a.length) throw new RangeError.value(end); | 24852 if (end > a.length) throw new RangeError.value(end); |
| 24856 for (int i = start; i < end; i++) { | 24853 for (int i = start; i < end; i++) { |
| 24857 accumulator.add(a[i]); | 24854 accumulator.add(a[i]); |
| 24858 } | 24855 } |
| 24859 return accumulator; | 24856 return accumulator; |
| 24860 } | 24857 } |
| 24861 } | 24858 } |
| OLD | NEW |