| Index: tools/dom/templates/html/dart2js/impl_Console.darttemplate
|
| diff --git a/tools/dom/templates/html/dart2js/impl_Console.darttemplate b/tools/dom/templates/html/dart2js/impl_Console.darttemplate
|
| index 741c710c293ee8b13bfe9192dc8379a1e8db2463..3f6c4cd3119cf95ce5c306b27d322647fa4ebfc9 100644
|
| --- a/tools/dom/templates/html/dart2js/impl_Console.darttemplate
|
| +++ b/tools/dom/templates/html/dart2js/impl_Console.darttemplate
|
| @@ -20,6 +20,10 @@ $(ANNOTATIONS)$(CLASS_MODIFIERS)class Console {
|
| void assertCondition(bool condition, Object arg) => _isConsoleDefined ?
|
| JS('void', 'console.assertCondition(#, #)', condition, arg) : null;
|
|
|
| + @DomName('Console.clear')
|
| + void clear(Object arg) => _isConsoleDefined ?
|
| + JS('void', 'console.clear(#)', arg) : null;
|
| +
|
| @DomName('Console.count')
|
| void count(Object arg) => _isConsoleDefined ?
|
| JS('void', 'console.count(#)', arg) : null;
|
| @@ -72,6 +76,10 @@ $(ANNOTATIONS)$(CLASS_MODIFIERS)class Console {
|
| void profileEnd(String title) => _isConsoleDefined ?
|
| JS('void', 'console.profileEnd(#)', title) : null;
|
|
|
| + @DomName('Console.table')
|
| + void table(Object arg) => _isConsoleDefined ?
|
| + JS('void', 'console.table(#)', arg) : null;
|
| +
|
| @DomName('Console.time')
|
| void time(String title) => _isConsoleDefined ?
|
| JS('void', 'console.time(#)', title) : null;
|
|
|