| 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 | |
| 7 import 'dart:_interceptors'; | 6 import 'dart:_interceptors'; |
| 8 import 'dart:_js_helper' show checkNull, | 7 import 'dart:_js_helper' show checkNull, |
| 9 getRuntimeTypeString, | 8 getRuntimeTypeString, |
| 10 isJsArray, | 9 isJsArray, |
| 11 JSSyntaxRegExp, | 10 JSSyntaxRegExp, |
| 12 Primitives, | 11 Primitives, |
| 13 TypeImpl, | 12 TypeImpl, |
| 14 stringJoinUnchecked; | 13 stringJoinUnchecked; |
| 15 | 14 |
| 16 patch void print(var object) { | 15 patch void print(var object) { |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 | 291 |
| 293 patch class StackTrace { | 292 patch class StackTrace { |
| 294 patch String get fullStackTrace { | 293 patch String get fullStackTrace { |
| 295 throw new UnsupportedError('fullStackTrace'); | 294 throw new UnsupportedError('fullStackTrace'); |
| 296 } | 295 } |
| 297 | 296 |
| 298 patch String get stackTrace { | 297 patch String get stackTrace { |
| 299 throw new UnsupportedError('stackTrace'); | 298 throw new UnsupportedError('stackTrace'); |
| 300 } | 299 } |
| 301 } | 300 } |
| OLD | NEW |