| 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 dbd7bc39990671a6e0dbb7bdd8eefee0add6e1f6..0bc592c6681a0350940aefb795d9adafc74057ce 100644
|
| --- a/tools/dom/templates/html/dart2js/impl_Console.darttemplate
|
| +++ b/tools/dom/templates/html/dart2js/impl_Console.darttemplate
|
| @@ -79,8 +79,8 @@ $(ANNOTATIONS)class Console {
|
| JS('void', 'console.time(#)', title) : null;
|
|
|
| @DomName('Console.timeEnd')
|
| - void timeEnd(String title, Object arg) => _isConsoleDefined ?
|
| - JS('void', 'console.timeEnd(#, #)', title, arg) : null;
|
| + void timeEnd(String timerName) => _isConsoleDefined ?
|
| + JS('void', 'console.timeEnd(#)', timerName) : null;
|
|
|
| @DomName('Console.timeStamp')
|
| void timeStamp(Object arg) => _isConsoleDefined ?
|
|
|