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

Side by Side Diff: test/codegen/expect/dart/_isolate_helper.js

Issue 968273002: Fixing layout in js output (use full paths rather than just the library name) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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
OLDNEW
1 var _isolate_helper; 1 var _isolate_helper;
2 (function(_isolate_helper) { 2 (function(_isolate_helper) {
3 'use strict'; 3 'use strict';
4 // Function _callInIsolate: (_IsolateContext, Function) → dynamic 4 // Function _callInIsolate: (_IsolateContext, Function) → dynamic
5 function _callInIsolate(isolate, function) { 5 function _callInIsolate(isolate, function) {
6 let result = isolate.eval(function); 6 let result = isolate.eval(function);
7 _isolate_helper._globalState.topEventLoop.run(); 7 _isolate_helper._globalState.topEventLoop.run();
8 return result; 8 return result;
9 } 9 }
10 // Function enterJsAsync: () → dynamic 10 // Function enterJsAsync: () → dynamic
(...skipping 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after
1266 _isolate_helper.globalWindow = globalWindow; 1266 _isolate_helper.globalWindow = globalWindow;
1267 _isolate_helper.globalWorker = globalWorker; 1267 _isolate_helper.globalWorker = globalWorker;
1268 _isolate_helper.globalPostMessageDefined = globalPostMessageDefined; 1268 _isolate_helper.globalPostMessageDefined = globalPostMessageDefined;
1269 _isolate_helper.IsolateNatives = IsolateNatives; 1269 _isolate_helper.IsolateNatives = IsolateNatives;
1270 _isolate_helper.RawReceivePortImpl = RawReceivePortImpl; 1270 _isolate_helper.RawReceivePortImpl = RawReceivePortImpl;
1271 _isolate_helper.ReceivePortImpl = ReceivePortImpl; 1271 _isolate_helper.ReceivePortImpl = ReceivePortImpl;
1272 _isolate_helper.TimerImpl = TimerImpl; 1272 _isolate_helper.TimerImpl = TimerImpl;
1273 _isolate_helper.hasTimer = hasTimer; 1273 _isolate_helper.hasTimer = hasTimer;
1274 _isolate_helper.CapabilityImpl = CapabilityImpl; 1274 _isolate_helper.CapabilityImpl = CapabilityImpl;
1275 })(_isolate_helper || (_isolate_helper = {})); 1275 })(_isolate_helper || (_isolate_helper = {}));
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698