| 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; | 6 List profiles; |
| 7 | 7 |
| 8 void assert(bool condition) native; | 8 void assert_(bool condition) native; |
| 9 | 9 |
| 10 void count() native; | 10 void count() native; |
| 11 | 11 |
| 12 void debug(Object arg) native; | 12 void debug(Object arg) native; |
| 13 | 13 |
| 14 void dir() native; | 14 void dir() native; |
| 15 | 15 |
| 16 void dirxml() native; | 16 void dirxml() native; |
| 17 | 17 |
| 18 void error(Object arg) native; | 18 void error(Object arg) native; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 40 void timeStamp() native; | 40 void timeStamp() native; |
| 41 | 41 |
| 42 void trace(Object arg) native; | 42 void trace(Object arg) native; |
| 43 | 43 |
| 44 void warn(Object arg) native; | 44 void warn(Object arg) native; |
| 45 | 45 |
| 46 var dartObjectLocalStorage; | 46 var dartObjectLocalStorage; |
| 47 | 47 |
| 48 String get typeName() native; | 48 String get typeName() native; |
| 49 } | 49 } |
| OLD | NEW |