| OLD | NEW |
| 1 | 1 |
| 2 class Console native "=(typeof console == 'undefined' ? {} : console)" { | 2 class Console native "=(typeof console == 'undefined' ? {} : console)" { |
| 3 | 3 |
| 4 MemoryInfo memory; | 4 MemoryInfo memory; |
| 5 | 5 |
| 6 List profiles; |
| 7 |
| 6 void assert(bool condition) native; | 8 void assert(bool condition) native; |
| 7 | 9 |
| 8 void count() native; | 10 void count() native; |
| 9 | 11 |
| 10 void debug(Object arg) native; | 12 void debug(Object arg) native; |
| 11 | 13 |
| 12 void dir() native; | 14 void dir() native; |
| 13 | 15 |
| 14 void dirxml() native; | 16 void dirxml() native; |
| 15 | 17 |
| 16 void error(Object arg) native; | 18 void error(Object arg) native; |
| 17 | 19 |
| 18 void group() native; | 20 void group() native; |
| 19 | 21 |
| 20 void groupCollapsed() native; | 22 void groupCollapsed() native; |
| 21 | 23 |
| 22 void groupEnd() native; | 24 void groupEnd() native; |
| 23 | 25 |
| 24 void info(Object arg) native; | 26 void info(Object arg) native; |
| 25 | 27 |
| 26 void log(Object arg) native; | 28 void log(Object arg) native; |
| 27 | 29 |
| 28 void markTimeline() native; | 30 void markTimeline() native; |
| 29 | 31 |
| 32 void profile(String title) native; |
| 33 |
| 34 void profileEnd(String title) native; |
| 35 |
| 30 void time(String title) native; | 36 void time(String title) native; |
| 31 | 37 |
| 32 void timeEnd(String title) native; | 38 void timeEnd(String title) native; |
| 33 | 39 |
| 34 void timeStamp() native; | 40 void timeStamp() native; |
| 35 | 41 |
| 36 void trace(Object arg) native; | 42 void trace(Object arg) native; |
| 37 | 43 |
| 38 void warn(Object arg) native; | 44 void warn(Object arg) native; |
| 39 | 45 |
| 40 var dartObjectLocalStorage; | 46 var dartObjectLocalStorage; |
| 41 | 47 |
| 42 String get typeName() native; | 48 String get typeName() native; |
| 43 } | 49 } |
| OLD | NEW |