| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 class _ConsoleWrappingImplementation extends DOMWrapperBase implements Console { | 7 class _ConsoleWrappingImplementation extends DOMWrapperBase implements Console { |
| 8 _ConsoleWrappingImplementation() : super() {} | 8 _ConsoleWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__ConsoleWrappingImplementation() native { | 10 static create__ConsoleWrappingImplementation() native { |
| 11 return new _ConsoleWrappingImplementation(); | 11 return new _ConsoleWrappingImplementation(); |
| 12 } | 12 } |
| 13 | 13 |
| 14 MemoryInfo get memory() { return _get_memory(this); } | 14 MemoryInfo get memory() { return _get_memory(this); } |
| 15 static MemoryInfo _get_memory(var _this) native; | 15 static MemoryInfo _get_memory(var _this) native; |
| 16 | 16 |
| 17 List get profiles() { return _get_profiles(this); } | 17 List get profiles() { return _get_profiles(this); } |
| 18 static List _get_profiles(var _this) native; | 18 static List _get_profiles(var _this) native; |
| 19 | 19 |
| 20 void assert(bool condition) { | 20 void assert_(bool condition) { |
| 21 _assert(this, condition); | 21 _assert_(this, condition); |
| 22 return; | 22 return; |
| 23 } | 23 } |
| 24 static void _assert(receiver, condition) native; | 24 static void _assert_(receiver, condition) native; |
| 25 | 25 |
| 26 void count() { | 26 void count() { |
| 27 _count(this); | 27 _count(this); |
| 28 return; | 28 return; |
| 29 } | 29 } |
| 30 static void _count(receiver) native; | 30 static void _count(receiver) native; |
| 31 | 31 |
| 32 void debug(Object arg) { | 32 void debug(Object arg) { |
| 33 _debug(this, arg); | 33 _debug(this, arg); |
| 34 return; | 34 return; |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 static void _trace(receiver, arg) native; | 126 static void _trace(receiver, arg) native; |
| 127 | 127 |
| 128 void warn(Object arg) { | 128 void warn(Object arg) { |
| 129 _warn(this, arg); | 129 _warn(this, arg); |
| 130 return; | 130 return; |
| 131 } | 131 } |
| 132 static void _warn(receiver, arg) native; | 132 static void _warn(receiver, arg) native; |
| 133 | 133 |
| 134 String get typeName() { return "Console"; } | 134 String get typeName() { return "Console"; } |
| 135 } | 135 } |
| OLD | NEW |