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

Unified Diff: pkg/analyzer/lib/dart/ast/ast.dart

Issue 2347213002: Rename libraryUri (Closed)
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/dart/ast/ast.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5132c1ef5cc9f6fca272690a7bd30c53144b304e..abf386bc0293edae585c869a111f4ac95760bdd3 100644
--- a/pkg/analyzer/lib/dart/ast/ast.dart
+++ b/pkg/analyzer/lib/dart/ast/ast.dart
@@ -2039,12 +2039,14 @@ abstract class Configuration extends AstNode {
* Return the URI of the implementation library to be used if the condition is
* true.
*/
+ @deprecated
StringLiteral get libraryUri;
/**
* Set the URI of the implementation library to be used if the condition is
* true to the given [uri].
*/
+ @deprecated
void set libraryUri(StringLiteral uri);
/**
@@ -2070,12 +2072,24 @@ abstract class Configuration extends AstNode {
void set rightParenthesis(Token token);
/**
- * Return the source to which the [libraryUri] was resolved.
+ * Return the URI of the implementation library to be used if the condition is
+ * true.
+ */
+ StringLiteral get uri;
+
+ /**
+ * Set the URI of the implementation library to be used if the condition is
+ * true to the given [uri].
+ */
+ void set uri(StringLiteral uri);
+
+ /**
+ * Return the source to which the [uri] was resolved.
*/
Source get uriSource;
/**
- * Set the source to which the [libraryUri] was resolved to the given [source].
+ * Set the source to which the [uri] was resolved to the given [source].
*/
void set uriSource(Source source);
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/dart/ast/ast.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698