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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart

Issue 27510003: Scanner for UTF-8 byte arrays (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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) 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 library dart2js.js_emitter; 5 library dart2js.js_emitter;
6 6
7 import 'dart:collection' show Queue; 7 import 'dart:collection' show Queue;
8 8
9 import '../common.dart'; 9 import '../common.dart';
10 10
(...skipping 21 matching lines...) Expand all
32 JavaScriptBackend, 32 JavaScriptBackend,
33 JavaScriptBackend, 33 JavaScriptBackend,
34 Namer, 34 Namer,
35 NativeEmitter, 35 NativeEmitter,
36 RuntimeTypes, 36 RuntimeTypes,
37 Substitution, 37 Substitution,
38 TypeCheck, 38 TypeCheck,
39 TypeChecks; 39 TypeChecks;
40 40
41 import '../source_file.dart' show 41 import '../source_file.dart' show
42 SourceFile; 42 SourceFile,
43 StringSourceFile;
43 44
44 import '../source_map_builder.dart' show 45 import '../source_map_builder.dart' show
45 SourceMapBuilder; 46 SourceMapBuilder;
46 47
47 import '../util/characters.dart' show 48 import '../util/characters.dart' show
48 $$, 49 $$,
49 $A, 50 $A,
50 $HASH, 51 $HASH,
51 $PERIOD, 52 $PERIOD,
52 $Z, 53 $Z,
53 $a, 54 $a,
54 $z; 55 $z;
55 56
56 import '../util/uri_extras.dart' show 57 import '../util/uri_extras.dart' show
57 relativize; 58 relativize;
58 59
59 part 'class_builder.dart'; 60 part 'class_builder.dart';
60 part 'class_emitter.dart'; 61 part 'class_emitter.dart';
61 part 'closure_invocation_element.dart'; 62 part 'closure_invocation_element.dart';
62 part 'code_emitter_helper.dart'; 63 part 'code_emitter_helper.dart';
63 part 'code_emitter_task.dart'; 64 part 'code_emitter_task.dart';
64 part 'container_builder.dart'; 65 part 'container_builder.dart';
65 part 'declarations.dart'; 66 part 'declarations.dart';
66 part 'helpers.dart'; 67 part 'helpers.dart';
67 part 'interceptor_emitter.dart'; 68 part 'interceptor_emitter.dart';
68 part 'metadata_emitter.dart'; 69 part 'metadata_emitter.dart';
69 part 'nsm_emitter.dart'; 70 part 'nsm_emitter.dart';
70 part 'reflection_data_parser.dart'; 71 part 'reflection_data_parser.dart';
71 part 'type_test_emitter.dart'; 72 part 'type_test_emitter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698