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

Side by Side Diff: pkg/front_end/lib/src/fasta/builder/library_builder.dart

Issue 2691653003: Compute bounds of type variables. (Closed)
Patch Set: Created 3 years, 10 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
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 ClassBuilder,
21 InvalidTypeBuilder, 22 InvalidTypeBuilder,
22 TypeBuilder; 23 TypeBuilder;
23 24
24 import 'scope.dart' show 25 import 'scope.dart' show
25 Scope; 26 Scope;
26 27
27 abstract class LibraryBuilder<T extends TypeBuilder, R> extends Builder { 28 abstract class LibraryBuilder<T extends TypeBuilder, R> extends Builder {
28 final List<Export> exporters = <Export>[]; 29 final List<Export> exporters = <Export>[];
29 30
30 final List<InputError> compileTimeErrors = <InputError>[]; 31 final List<InputError> compileTimeErrors = <InputError>[];
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 } 63 }
63 64
64 bool addToExportScope(String name, Builder member); 65 bool addToExportScope(String name, Builder member);
65 66
66 void addToScope(String name, Builder member); 67 void addToScope(String name, Builder member);
67 68
68 InvalidTypeBuilder buildAmbiguousBuilder( 69 InvalidTypeBuilder buildAmbiguousBuilder(
69 String name, Builder builder, Builder other, int charOffset); 70 String name, Builder builder, Builder other, int charOffset);
70 71
71 int finishStaticInvocations() => 0; 72 int finishStaticInvocations() => 0;
73
74 int finishTypeVariables(ClassBuilder object) => 0;
72 } 75 }
OLDNEW
« no previous file with comments | « no previous file | pkg/front_end/lib/src/fasta/kernel/kernel_library_builder.dart » ('j') | pkg/front_end/test/fasta/outline.status » ('J')

Powered by Google App Engine
This is Rietveld 408576698