Chromium Code Reviews| 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 // Patch file for dart:core classes. | 5 // Patch file for dart:core classes. |
| 6 | 6 |
| 7 // Patch for 'print' function. | 7 // Patch for 'print' function. |
| 8 patch void print(var object) { | 8 patch void print(var object) { |
| 9 if (object is String) { | 9 if (object is String) { |
| 10 Primitives.printString(object); | 10 Primitives.printString(object); |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 141 patch int get second => Primitives.getSeconds(this); | 141 patch int get second => Primitives.getSeconds(this); |
| 142 | 142 |
| 143 patch int get millisecond => Primitives.getMilliseconds(this); | 143 patch int get millisecond => Primitives.getMilliseconds(this); |
| 144 | 144 |
| 145 patch int get weekday => Primitives.getWeekday(this); | 145 patch int get weekday => Primitives.getWeekday(this); |
| 146 } | 146 } |
| 147 | 147 |
| 148 | 148 |
| 149 // Patch for Stopwatch implementation. | 149 // Patch for Stopwatch implementation. |
| 150 patch class _StopwatchImpl { | 150 patch class _StopwatchImpl { |
| 151 patch static int _frequency() => 1000; | 151 patch static int _frequency() => 1000000; |
| 152 patch static int _now() => Primitives.dateNow(); | 152 patch static int _now() => Primitives.numMicroseconds(); |
|
Lasse Reichstein Nielsen
2012/11/22 11:26:48
Side note: We should get rid of these "Primitives"
ahe
2012/11/22 12:54:46
I disagree, and this is not the forum for discussi
| |
| 153 } | 153 } |
| 154 | 154 |
| 155 | 155 |
| 156 // Patch for List implementation. | 156 // Patch for List implementation. |
| 157 patch class _ListImpl<E> { | 157 patch class _ListImpl<E> { |
| 158 patch factory List([int length]) => Primitives.newList(length); | 158 patch factory List([int length]) => Primitives.newList(length); |
| 159 | 159 |
| 160 patch factory List.from(Iterable<E> other) { | 160 patch factory List.from(Iterable<E> other) { |
| 161 var result = new List(); | 161 var result = new List(); |
| 162 for (var element in other) { | 162 for (var element in other) { |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 212 } | 212 } |
| 213 | 213 |
| 214 patch class RegExp { | 214 patch class RegExp { |
| 215 patch factory RegExp(String pattern, | 215 patch factory RegExp(String pattern, |
| 216 {bool multiLine: false, | 216 {bool multiLine: false, |
| 217 bool ignoreCase: false}) | 217 bool ignoreCase: false}) |
| 218 => new JSSyntaxRegExp(pattern, | 218 => new JSSyntaxRegExp(pattern, |
| 219 multiLine: multiLine, | 219 multiLine: multiLine, |
| 220 ignoreCase: ignoreCase); | 220 ignoreCase: ignoreCase); |
| 221 } | 221 } |
| OLD | NEW |