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

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

Issue 9271037: Inserted string validation as separate task in compiler. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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) 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('io/io.dart', prefix: 'io'); 7 #import('io/io.dart', prefix: 'io');
8 8
9 #import('elements/elements.dart'); 9 #import('elements/elements.dart');
10 #import('scanner/scannerlib.dart'); 10 #import('scanner/scannerlib.dart');
11 #import('scanner/scanner_implementation.dart'); 11 #import('scanner/scanner_implementation.dart');
12 #import('ssa/ssa.dart'); 12 #import('ssa/ssa.dart');
13 #import('tree/tree.dart'); 13 #import('tree/tree.dart');
14 #import('util/util.dart'); 14 #import('util/util.dart');
15 #import('util/characters.dart');
ahe 2012/01/25 08:39:44 I'd like to avoid this import. Could you turn stri
Lasse Reichstein Nielsen 2012/01/26 10:14:20 Done.
15 16
16 #source('compiler.dart'); 17 #source('compiler.dart');
17 #source('compile_time_constants.dart'); 18 #source('compile_time_constants.dart');
18 #source('emitter.dart'); 19 #source('emitter.dart');
19 #source('namer.dart'); 20 #source('namer.dart');
20 #source('resolver.dart'); 21 #source('resolver.dart');
21 #source('script.dart'); 22 #source('script.dart');
23 #source('string_validator.dart');
22 #source('tree_validator.dart'); 24 #source('tree_validator.dart');
23 #source('typechecker.dart'); 25 #source('typechecker.dart');
24 #source('universe.dart'); 26 #source('universe.dart');
25 #source('warnings.dart'); 27 #source('warnings.dart');
26 28
27 final bool GENERATE_SSA_TRACE = false; 29 final bool GENERATE_SSA_TRACE = false;
28 30
29 void unreachable() { 31 void unreachable() {
30 throw const Exception("Internal Error (Leg): UNREACHABLE"); 32 throw const Exception("Internal Error (Leg): UNREACHABLE");
31 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698