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

Side by Side Diff: dart/tests/try/web/print.js

Issue 645513002: Scaffolding for testing incremental compilation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix bad refactoring. Created 6 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // 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
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'package:analysis_server/driver.dart'; 5 /// Unless overridden by a Zone, [print] in dart:core will call this function
6 6 /// if defined.
7 /** 7 function dartPrint(message) {
8 * Create and run an HTTP-based analysis server. 8 console.log(message);
9 */ 9 window.parent.postMessage(message, '*');
10 void main(List<String> args) {
11 Driver driver = new Driver();
12 driver.start(args);
13 } 10 }
OLDNEW
« no previous file with comments | « dart/tests/try/web/incremental_compilation_update_test.dart ('k') | dart/tests/try/web/sandbox.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698