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

Unified Diff: compiler/java/com/google/dart/compiler/ast/DartDeclaration.java

Issue 10829362: Rename DartMetadata in preparation for supporting real metadata (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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 | compiler/java/com/google/dart/compiler/ast/DartMetadata.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/java/com/google/dart/compiler/ast/DartDeclaration.java
===================================================================
--- compiler/java/com/google/dart/compiler/ast/DartDeclaration.java (revision 10855)
+++ compiler/java/com/google/dart/compiler/ast/DartDeclaration.java (working copy)
@@ -14,7 +14,7 @@
private N name; // Not visited.
private DartComment dartDoc;
- private DartMetadata metadata = DartMetadata.EMPTY;
+ private DartObsoleteMetadata metadata = DartObsoleteMetadata.EMPTY;
protected DartDeclaration(N name) {
this.name = becomeParentOf(name);
@@ -37,11 +37,11 @@
this.dartDoc = dartDoc;
}
- public DartMetadata getMetadata() {
+ public DartObsoleteMetadata getMetadata() {
return metadata;
}
- public void setMetadata(DartMetadata metadata) {
+ public void setMetadata(DartObsoleteMetadata metadata) {
this.metadata = metadata;
}
« no previous file with comments | « no previous file | compiler/java/com/google/dart/compiler/ast/DartMetadata.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698