| OLD | NEW |
| 1 dart_library.library('dart/_debugger', null, /* Imports */[ | 1 dart_library.library('dart/_debugger', null, /* Imports */[ |
| 2 'dart/_runtime', | 2 'dart/_runtime', |
| 3 'dart/core' | 3 'dart/core' |
| 4 ], /* Lazy imports */[ | 4 ], /* Lazy imports */[ |
| 5 ], function(exports, dart, core) { | 5 ], function(exports, dart, core) { |
| 6 'use strict'; | 6 'use strict'; |
| 7 let dartx = dart.dartx; | 7 let dartx = dart.dartx; |
| 8 const skipDartConfig = dart.const(new core.Object()); | 8 const skipDartConfig = dart.const(new core.Object()); |
| 9 exports.maxIterableChildrenToDisplay = 50; | 9 exports.maxIterableChildrenToDisplay = 50; |
| 10 dart.defineLazyProperties(exports, { | 10 dart.defineLazyProperties(exports, { |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 createChild(tagName) { | 149 createChild(tagName) { |
| 150 let c = new JsonMLElement(tagName); | 150 let c = new JsonMLElement(tagName); |
| 151 this[_jsonML][dartx.add](c.toJsonML()); | 151 this[_jsonML][dartx.add](c.toJsonML()); |
| 152 return c; | 152 return c; |
| 153 } | 153 } |
| 154 createObjectTag(object) { | 154 createObjectTag(object) { |
| 155 return (() => { | 155 return (() => { |
| 156 let _ = this.createChild('object'); | 156 let _ = this.createChild('object'); |
| 157 _.addAttribute('object', object); | 157 _.addAttribute('object', object); |
| 158 return _; | 158 return _; |
| 159 }).bind(this)(); | 159 })(); |
| 160 } | 160 } |
| 161 setStyle(style) { | 161 setStyle(style) { |
| 162 dart.dput(this[_attributes], 'style', style); | 162 dart.dput(this[_attributes], 'style', style); |
| 163 } | 163 } |
| 164 addStyle(style) { | 164 addStyle(style) { |
| 165 if (dart.dload(this[_attributes], 'style') == null) { | 165 if (dart.dload(this[_attributes], 'style') == null) { |
| 166 dart.dput(this[_attributes], 'style', style); | 166 dart.dput(this[_attributes], 'style', style); |
| 167 } else { | 167 } else { |
| 168 let o = this[_attributes]; | 168 let o = this[_attributes]; |
| 169 dart.dput(o, 'style', dart.dsend(dart.dload(o, 'style'), '+', style)); | 169 dart.dput(o, 'style', dart.dsend(dart.dload(o, 'style'), '+', style)); |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 exports.DartFormatter = DartFormatter; | 556 exports.DartFormatter = DartFormatter; |
| 557 exports.ObjectFormatter = ObjectFormatter; | 557 exports.ObjectFormatter = ObjectFormatter; |
| 558 exports.FunctionFormatter = FunctionFormatter; | 558 exports.FunctionFormatter = FunctionFormatter; |
| 559 exports.MapFormatter = MapFormatter; | 559 exports.MapFormatter = MapFormatter; |
| 560 exports.IterableFormatter = IterableFormatter; | 560 exports.IterableFormatter = IterableFormatter; |
| 561 exports.ClassMetadataFormatter = ClassMetadataFormatter; | 561 exports.ClassMetadataFormatter = ClassMetadataFormatter; |
| 562 exports.MapEntryFormatter = MapEntryFormatter; | 562 exports.MapEntryFormatter = MapEntryFormatter; |
| 563 exports.HeritageClauseFormatter = HeritageClauseFormatter; | 563 exports.HeritageClauseFormatter = HeritageClauseFormatter; |
| 564 exports.registerDevtoolsFormatter = registerDevtoolsFormatter; | 564 exports.registerDevtoolsFormatter = registerDevtoolsFormatter; |
| 565 }); | 565 }); |
| OLD | NEW |