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

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

Issue 2803833003: Small steps towards deferred loading. (Closed)
Patch Set: Tweak status file. Some of the compile-time errors result in passing tests. Created 3 years, 8 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
« no previous file with comments | « no previous file | pkg/front_end/lib/src/fasta/import.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.prefix_builder; 5 library fasta.prefix_builder;
6 6
7 import 'builder.dart' show Builder, LibraryBuilder, Scope; 7 import 'builder.dart' show Builder, LibraryBuilder, Scope;
8 8
9 class PrefixBuilder extends Builder { 9 class PrefixBuilder extends Builder {
10 final String name; 10 final String name;
11 11
12 final Scope exports = new Scope.top(); 12 final Scope exports = new Scope.top();
13 13
14 final LibraryBuilder parent; 14 final LibraryBuilder parent;
15 15
16 PrefixBuilder(this.name, LibraryBuilder parent, int charOffset) 16 final bool deferred;
17
18 PrefixBuilder(this.name, this.deferred, LibraryBuilder parent, int charOffset)
17 : parent = parent, 19 : parent = parent,
18 super(parent, charOffset, parent.fileUri); 20 super(parent, charOffset, parent.fileUri);
19 21
20 Builder lookup(String name, int charOffset, Uri fileUri) { 22 Builder lookup(String name, int charOffset, Uri fileUri) {
21 return exports.lookup(name, charOffset, fileUri); 23 return exports.lookup(name, charOffset, fileUri);
22 } 24 }
23 25
24 @override 26 @override
25 String get fullNameForErrors => name; 27 String get fullNameForErrors => name;
26 } 28 }
OLDNEW
« no previous file with comments | « no previous file | pkg/front_end/lib/src/fasta/import.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698