Chromium Code Reviews| Index: pkg/analyzer/lib/dart/ast/ast.dart |
| diff --git a/pkg/analyzer/lib/dart/ast/ast.dart b/pkg/analyzer/lib/dart/ast/ast.dart |
| index 7248f5e2d175c25fabc0e1c0800f3f4daf32dcda..0335ae43cd567fe205d99ced780a9f6ee1e0424b 100644 |
| --- a/pkg/analyzer/lib/dart/ast/ast.dart |
| +++ b/pkg/analyzer/lib/dart/ast/ast.dart |
| @@ -5973,6 +5973,14 @@ abstract class NamespaceDirective extends UriBasedDirective { |
| Source get selectedSource; |
| /** |
| + * Return the URI that was selected based on the declared variables. This |
| + * will be the URI from the first configuration whose condition is true, or |
| + * the [uri] if either there are no configurations or if there are no |
| + * configurations whose condition is true. |
| + */ |
| + String get selectedUri; |
|
Brian Wilkerson
2016/09/17 00:27:42
Not sure I like the name, but given that 'selected
scheglov
2016/09/17 02:01:57
Ah... Right.
It should be selectedUriContent, as i
Brian Wilkerson
2016/09/17 02:27:13
We didn't make it selectedUriSource, so I don't kn
|
| + |
| + /** |
| * Return the semicolon terminating the directive. |
| */ |
| Token get semicolon; |