OLD | NEW |
---|---|
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 fasta.library_builder; | 5 library fasta.library_builder; |
6 | 6 |
7 import '../combinator.dart' show | 7 import '../combinator.dart' show |
8 Combinator; | 8 Combinator; |
9 | 9 |
10 import '../errors.dart' show | 10 import '../errors.dart' show |
11 InputError; | 11 InputError; |
12 | 12 |
13 import '../export.dart' show | 13 import '../export.dart' show |
14 Export; | 14 Export; |
15 | 15 |
16 import '../loader.dart' show | 16 import '../loader.dart' show |
17 Loader; | 17 Loader; |
18 | 18 |
19 import 'builder.dart' show | 19 import 'builder.dart' show |
20 Builder, | 20 Builder, |
21 InvalidTypeBuilder, | |
22 TypeBuilder; | 21 TypeBuilder; |
23 | 22 |
24 import 'scope.dart' show | 23 import 'scope.dart' show |
25 Scope; | 24 Scope; |
26 | 25 |
27 abstract class LibraryBuilder<T extends TypeBuilder, R> extends Builder { | 26 abstract class LibraryBuilder<T extends TypeBuilder, R> extends Builder { |
28 final List<Export> exporters = <Export>[]; | 27 final List<Export> exporters = <Export>[]; |
29 | 28 |
30 final List<InputError> compileTimeErrors = <InputError>[]; | 29 final List<InputError> compileTimeErrors = <InputError>[]; |
31 | 30 |
(...skipping 19 matching lines...) Expand all Loading... | |
51 void addCompileTimeError(int charOffset, Object message) { | 50 void addCompileTimeError(int charOffset, Object message) { |
52 InputError error = new InputError(uri, charOffset, message); | 51 InputError error = new InputError(uri, charOffset, message); |
53 compileTimeErrors.add(error); | 52 compileTimeErrors.add(error); |
54 print(error.format()); | 53 print(error.format()); |
55 } | 54 } |
56 | 55 |
57 bool addToExportScope(String name, Builder member); | 56 bool addToExportScope(String name, Builder member); |
58 | 57 |
59 void addToScope(String name, Builder member); | 58 void addToScope(String name, Builder member); |
60 | 59 |
61 InvalidTypeBuilder buildAmbiguousBuilder( | 60 Builder buildAmbiguousBuilder( |
Siggi Cherem (dart-lang)
2017/02/02 04:26:58
one of the subclasses returns a MixinAccessor, whi
| |
62 String name, Builder builder, Builder other); | 61 String name, Builder builder, Builder other); |
63 | 62 |
64 int finishStaticInvocations() => 0; | 63 int finishStaticInvocations() => 0; |
65 } | 64 } |
OLD | NEW |