| 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 84527d2bc69146524b3b9a559b719fd5acfffd6c..cfd9531bb7c00d91797e8ddec1e375e8bf1b8516 100644
|
| --- a/tools/dom/templates/html/dart2js/impl_Console.darttemplate
|
| +++ b/tools/dom/templates/html/dart2js/impl_Console.darttemplate
|
| @@ -14,10 +14,6 @@ $(ANNOTATIONS)class Console {
|
| MemoryInfo get memory => _isConsoleDefined ?
|
| JS('MemoryInfo', 'console.memory') : null;
|
|
|
| - @DomName('Console.profiles')
|
| - List<ScriptProfile> get profiles => _isConsoleDefined ?
|
| - JS('List<ScriptProfile>', 'console.profiles') : null;
|
| -
|
| @DomName('Console.assertCondition')
|
| void assertCondition(bool condition, Object arg) => _isConsoleDefined ?
|
| JS('void', 'console.assertCondition(#, #)', condition, arg) : null;
|
|
|