Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // This sample demonstrates how to run the compiler in a loop reading | 5 // This sample demonstrates how to run the compiler in a loop reading |
| 6 // all sources from memory, instead of using dart:io. | 6 // all sources from memory, instead of using dart:io. |
| 7 library sample.compile_loop; | 7 library sample.compile_loop; |
| 8 | 8 |
| 9 import 'dart:async'; | 9 import 'dart:async'; |
| 10 | 10 |
| 11 import '../../compiler.dart' as compiler; | 11 import '../../lib/compiler.dart' as compiler; |
|
ahe
2014/11/05 14:24:43
Would 'package:compiler/compiler.dart' work?
Johnni Winther
2014/11/06 08:15:56
Yes, within the repository.
| |
| 12 | 12 |
| 13 // If this file is missing, generate it using ../jsonify/jsonify.dart. | 13 // If this file is missing, generate it using ../jsonify/jsonify.dart. |
| 14 import 'sdk.dart'; | 14 import 'sdk.dart'; |
| 15 | 15 |
| 16 Future<String> compile(source) { | 16 Future<String> compile(source) { |
| 17 Future<String> inputProvider(Uri uri) { | 17 Future<String> inputProvider(Uri uri) { |
| 18 if (uri.scheme == 'sdk') { | 18 if (uri.scheme == 'sdk') { |
| 19 var value = SDK_SOURCES['$uri']; | 19 var value = SDK_SOURCES['$uri']; |
| 20 if (value == null) { | 20 if (value == null) { |
| 21 // TODO(ahe): Use new Future.error. | 21 // TODO(ahe): Use new Future.error. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 67 | 67 |
| 68 var greeting = "Hello, World!"; | 68 var greeting = "Hello, World!"; |
| 69 | 69 |
| 70 // Displays a greeting. | 70 // Displays a greeting. |
| 71 void main() { | 71 void main() { |
| 72 // This example uses HTML to display the greeting and it will appear | 72 // This example uses HTML to display the greeting and it will appear |
| 73 // in a nested HTML frame (an iframe). | 73 // in a nested HTML frame (an iframe). |
| 74 document.body.append(new HeadingElement.h1()..appendText(greeting)); | 74 document.body.append(new HeadingElement.h1()..appendText(greeting)); |
| 75 } | 75 } |
| 76 '''; | 76 '''; |
| OLD | NEW |