| 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.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 } |
| OLD | NEW |