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 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface Console { | 7 interface Console { |
8 | 8 |
9 final MemoryInfo memory; | 9 final MemoryInfo memory; |
10 | 10 |
11 final List profiles; | 11 final List profiles; |
12 | 12 |
13 void assertCondition(bool condition); | 13 void assertCondition(bool condition, Object arg); |
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(); |
22 | 22 |
23 void error(Object arg); | 23 void error(Object arg); |
24 | 24 |
25 void group(); | 25 void group(Object arg); |
26 | 26 |
27 void groupCollapsed(); | 27 void groupCollapsed(Object arg); |
28 | 28 |
29 void groupEnd(); | 29 void groupEnd(); |
30 | 30 |
31 void info(Object arg); | 31 void info(Object arg); |
32 | 32 |
33 void log(Object arg); | 33 void log(Object arg); |
34 | 34 |
35 void markTimeline(); | 35 void markTimeline(); |
36 | 36 |
37 void profile(String title); | 37 void profile(String title); |
38 | 38 |
39 void profileEnd(String title); | 39 void profileEnd(String title); |
40 | 40 |
41 void time(String title); | 41 void time(String title); |
42 | 42 |
43 void timeEnd(String title); | 43 void timeEnd(String title, Object arg); |
44 | 44 |
45 void timeStamp(); | 45 void timeStamp(Object arg); |
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 |