| 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 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 return new Future.value(value); | 24 return new Future.value(value); |
| 25 } else if ('$uri' == 'memory:/main.dart') { | 25 } else if ('$uri' == 'memory:/main.dart') { |
| 26 return new Future.value(source); | 26 return new Future.value(source); |
| 27 } | 27 } |
| 28 // TODO(ahe): Use new Future.error. | 28 // TODO(ahe): Use new Future.error. |
| 29 throw new Exception('Error: Cannot read: $uri'); | 29 throw new Exception('Error: Cannot read: $uri'); |
| 30 } | 30 } |
| 31 void handler(Uri uri, int begin, int end, | 31 void handler(Uri uri, int begin, int end, |
| 32 String message, compiler.Diagnostic kind) { | 32 String message, compiler.Diagnostic kind) { |
| 33 // TODO(ahe): Remove dart:io import from | 33 // TODO(ahe): Remove dart:io import from |
| 34 // ../../implementation/source_file_provider.dart and use | 34 // ../../lib/src/source_file_provider.dart and use |
| 35 // FormattingDiagnosticHandler instead. | 35 // FormattingDiagnosticHandler instead. |
| 36 print({ 'uri': '$uri', | 36 print({ 'uri': '$uri', |
| 37 'begin': begin, | 37 'begin': begin, |
| 38 'end': end, | 38 'end': end, |
| 39 'message': message, | 39 'message': message, |
| 40 'kind': kind.name }); | 40 'kind': kind.name }); |
| 41 if (kind == compiler.Diagnostic.ERROR) { | 41 if (kind == compiler.Diagnostic.ERROR) { |
| 42 throw new Exception('Unexpected error occurred.'); | 42 throw new Exception('Unexpected error occurred.'); |
| 43 } | 43 } |
| 44 } | 44 } |
| (...skipping 22 matching lines...) Expand all 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 |