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

Side by Side Diff: dart/frog/leg/leg.dart

Issue 9719019: Launch Leg independently of Frog. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address own comment Created 8 years, 9 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
« no previous file with comments | « dart/frog/leg/compiler.dart ('k') | dart/frog/presubmit.py » ('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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 #library('leg'); 5 #library('leg');
6 6
7 #import('../../lib/uri/uri.dart'); 7 #import('../../lib/uri/uri.dart');
8 8
9 #import('colors.dart');
9 #import('elements/elements.dart'); 10 #import('elements/elements.dart');
10 #import('native_handler.dart', prefix: 'native'); 11 #import('native_handler.dart', prefix: 'native');
12 #import('scanner/scanner_implementation.dart');
11 #import('scanner/scannerlib.dart'); 13 #import('scanner/scannerlib.dart');
12 #import('scanner/scanner_implementation.dart');
13 #import('ssa/ssa.dart'); 14 #import('ssa/ssa.dart');
14 #import('string_validator.dart'); 15 #import('string_validator.dart');
15 #import('tree/tree.dart'); 16 #import('tree/tree.dart');
16 #import('util/characters.dart'); 17 #import('util/characters.dart');
17 #import('util/util.dart'); 18 #import('util/util.dart');
18 19
19 #source('compile_time_constants.dart'); 20 #source('compile_time_constants.dart');
20 #source('compiler.dart'); 21 #source('compiler.dart');
21 #source('diagnostic_listener.dart'); 22 #source('diagnostic_listener.dart');
22 #source('emitter.dart'); 23 #source('emitter.dart');
23 #source('enqueue.dart'); 24 #source('enqueue.dart');
24 #source('namer.dart'); 25 #source('namer.dart');
25 #source('native_emitter.dart'); 26 #source('native_emitter.dart');
26 #source('operations.dart'); 27 #source('operations.dart');
27 #source('resolver.dart'); 28 #source('resolver.dart');
28 #source('script.dart'); 29 #source('script.dart');
29 #source('tree_validator.dart'); 30 #source('tree_validator.dart');
30 #source('typechecker.dart'); 31 #source('typechecker.dart');
31 #source('universe.dart'); 32 #source('universe.dart');
32 #source('warnings.dart'); 33 #source('warnings.dart');
33 34
34 void unreachable() { 35 void unreachable() {
35 throw const Exception("Internal Error (Leg): UNREACHABLE"); 36 throw const Exception("Internal Error (Leg): UNREACHABLE");
36 } 37 }
OLDNEW
« no previous file with comments | « dart/frog/leg/compiler.dart ('k') | dart/frog/presubmit.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698