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 interface Console { | 7 interface Console { |
8 | 8 |
9 MemoryInfo get memory(); | 9 final MemoryInfo memory; |
10 | 10 |
11 List get profiles(); | 11 final List profiles; |
12 | 12 |
13 void assertCondition(bool condition); | 13 void assertCondition(bool condition); |
14 | 14 |
15 void count(); | 15 void count(); |
16 | 16 |
17 void debug(Object arg); | 17 void debug(Object arg); |
18 | 18 |
19 void dir(); | 19 void dir(); |
20 | 20 |
21 void dirxml(); | 21 void dirxml(); |
(...skipping 19 matching lines...) Expand all Loading... |
41 void time(String title); | 41 void time(String title); |
42 | 42 |
43 void timeEnd(String title); | 43 void timeEnd(String title); |
44 | 44 |
45 void timeStamp(); | 45 void timeStamp(); |
46 | 46 |
47 void trace(Object arg); | 47 void trace(Object arg); |
48 | 48 |
49 void warn(Object arg); | 49 void warn(Object arg); |
50 } | 50 } |
OLD | NEW |