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

Side by Side Diff: pkg/compiler/samples/compile_loop/compile_loop.dart

Issue 694353007: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
« no previous file with comments | « pkg/compiler/lib/src/world.dart ('k') | pkg/compiler/samples/darttags/darttags.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ''';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/world.dart ('k') | pkg/compiler/samples/darttags/darttags.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698