| 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__Console_memory(this); } | 14 MemoryInfo get memory() { return _get_memory(this); } |
| 15 static MemoryInfo _get__Console_memory(var _this) native; | 15 static MemoryInfo _get_memory(var _this) native; |
| 16 | 16 |
| 17 void assert(bool condition) { | 17 void assert(bool condition) { |
| 18 _assert(this, condition); | 18 _assert(this, condition); |
| 19 return; | 19 return; |
| 20 } | 20 } |
| 21 static void _assert(receiver, condition) native; | 21 static void _assert(receiver, condition) native; |
| 22 | 22 |
| 23 void count() { | 23 void count() { |
| 24 _count(this); | 24 _count(this); |
| 25 return; | 25 return; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 static void _trace(receiver, arg) native; | 111 static void _trace(receiver, arg) native; |
| 112 | 112 |
| 113 void warn(Object arg) { | 113 void warn(Object arg) { |
| 114 _warn(this, arg); | 114 _warn(this, arg); |
| 115 return; | 115 return; |
| 116 } | 116 } |
| 117 static void _warn(receiver, arg) native; | 117 static void _warn(receiver, arg) native; |
| 118 | 118 |
| 119 String get typeName() { return "Console"; } | 119 String get typeName() { return "Console"; } |
| 120 } | 120 } |
| OLD | NEW |