Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: lib/runtime/dart/_debugger.js

Issue 1643523008: fix #43, remove => workaround (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « bin/devrun.dart ('k') | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 });
OLDNEW
« no previous file with comments | « bin/devrun.dart ('k') | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698