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

Side by Side Diff: pkg/compiler/lib/src/scanner/scannerlib.dart

Issue 1315483006: Split scannerlib.dart into several libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Update try tests Created 5 years, 3 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
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library scanner;
6
7 import 'dart:collection' show IterableBase, HashSet;
8
9 import '../common/tasks.dart' show
10 CompilerTask;
11 import '../compiler.dart' show
12 Compiler;
13 import '../dart_types.dart' show DynamicType;
14 import '../diagnostics/diagnostic_listener.dart';
15 import '../diagnostics/invariant.dart' show
16 invariant;
17 import '../diagnostics/messages.dart';
18 import '../diagnostics/spannable.dart' show
19 Spannable,
20 SpannableAssertionFailure;
21 import '../elements/elements.dart';
22
23 import '../elements/modelx.dart' show
24 BaseFunctionElementX,
25 ClassElementX,
26 CompilationUnitElementX,
27 ConstructorElementX,
28 DeclarationSite,
29 ElementX,
30 EnumClassElementX,
31 FieldElementX,
32 GetterElementX,
33 MethodElementX,
34 LibraryElementX,
35 MetadataAnnotationX,
36 MixinApplicationElementX,
37 SetterElementX,
38 TypedefElementX,
39 VariableElementX,
40 VariableList;
41
42 import '../elements/visitor.dart'
43 show ElementVisitor;
44 import '../native/native.dart' as native;
45 import '../string_validator.dart';
46 import '../script.dart';
47 import '../tree/tree.dart';
48 import '../util/characters.dart';
49 import '../util/util.dart';
50 import '../io/source_file.dart' show SourceFile, Utf8BytesSourceFile;
51 import 'dart:convert' show UTF8, UNICODE_BOM_CHARACTER_RUNE;
52
53 part 'class_element_parser.dart';
54 part 'keyword.dart';
55 part 'listener.dart';
56 part 'parser.dart';
57 part 'parser_task.dart';
58 part 'partial_parser.dart';
59 part 'scanner.dart';
60 part 'scanner_task.dart';
61 part 'array_based_scanner.dart';
62 part 'utf8_bytes_scanner.dart';
63 part 'string_scanner.dart';
64 part 'token.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/scanner/scanner_task.dart ('k') | pkg/compiler/lib/src/scanner/string_scanner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698