OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // WARNING: Do not edit - generated code. | |
6 | |
7 interface Console { | |
8 | |
9 final MemoryInfo memory; | |
10 | |
11 final List profiles; | |
12 | |
13 void assertCondition(bool condition, Object arg); | |
14 | |
15 void count(); | |
16 | |
17 void debug(Object arg); | |
18 | |
19 void dir(); | |
20 | |
21 void dirxml(); | |
22 | |
23 void error(Object arg); | |
24 | |
25 void group(Object arg); | |
26 | |
27 void groupCollapsed(Object arg); | |
28 | |
29 void groupEnd(); | |
30 | |
31 void info(Object arg); | |
32 | |
33 void log(Object arg); | |
34 | |
35 void markTimeline(); | |
36 | |
37 void profile(String title); | |
38 | |
39 void profileEnd(String title); | |
40 | |
41 void time(String title); | |
42 | |
43 void timeEnd(String title, Object arg); | |
44 | |
45 void timeStamp(Object arg); | |
46 | |
47 void trace(Object arg); | |
48 | |
49 void warn(Object arg); | |
50 } | |
OLD | NEW |