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

Side by Side Diff: dart/lib/compiler/samples/leap/leap_leg.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 part of leap;
2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
6 4
7 compilerIsolate(port) { 5 compilerIsolate(port) {
8 Runner runner = new Runner(); 6 Runner runner = new Runner();
9 runner.init(); 7 runner.init();
10 8
11 port.receive((msg, replyTo) { 9 port.receive((msg, replyTo) {
12 replyTo.send(runner.update(msg)); 10 replyTo.send(runner.update(msg));
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 mainApp = new LibraryElement(script); 278 mainApp = new LibraryElement(script);
281 279
282 universe.libraries.remove(script.uri.toString()); 280 universe.libraries.remove(script.uri.toString());
283 Element element; 281 Element element;
284 withCurrentElement(mainApp, () { 282 withCurrentElement(mainApp, () {
285 scanner.scan(mainApp); 283 scanner.scan(mainApp);
286 }); 284 });
287 return mainApp; 285 return mainApp;
288 } 286 }
289 } 287 }
OLDNEW
« no previous file with comments | « dart/lib/compiler/implementation/world.dart ('k') | dart/lib/compiler/samples/leap/leap_script.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698