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

Unified Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/local/computer/OutlineImpl.java

Issue 247813002: New analysis services snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/local/computer/OutlineImplTest.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/local/computer/OutlineImpl.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/local/computer/OutlineImpl.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/local/computer/OutlineImpl.java
index d0169a6dd5a59f205c78e125f1e3f3b67c0d5f60..0cbca4142925f81ecada354e5ad17ee5be5737a2 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/local/computer/OutlineImpl.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/local/computer/OutlineImpl.java
@@ -34,14 +34,14 @@ public class OutlineImpl implements Outline {
private final String name;
private final int offset;
private final int length;
- private final String arguments;
+ private final String parameters;
private final String returnType;
private final boolean isAbstract;
private final boolean isStatic;
private Outline[] children = Outline.EMPTY_ARRAY;
public OutlineImpl(Outline parent, SourceRegion sourceRegion, OutlineKind kind, String name,
- int offset, int length, String arguments, String returnType, boolean isAbstract,
+ int offset, int length, String parameters, String returnType, boolean isAbstract,
boolean isStatic) {
this.parent = parent;
this.sourceRegion = sourceRegion;
@@ -49,7 +49,7 @@ public class OutlineImpl implements Outline {
this.name = name;
this.offset = offset;
this.length = length;
- this.arguments = arguments;
+ this.parameters = parameters;
this.returnType = returnType;
this.isAbstract = isAbstract;
this.isStatic = isStatic;
@@ -94,7 +94,7 @@ public class OutlineImpl implements Outline {
@Override
public String getParameters() {
- return arguments;
+ return parameters;
}
@Override
@@ -147,8 +147,8 @@ public class OutlineImpl implements Outline {
builder.append(offset);
builder.append(", length=");
builder.append(length);
- builder.append(", arguments=");
- builder.append(arguments);
+ builder.append(", parameters=");
+ builder.append(parameters);
builder.append(", return=");
builder.append(returnType);
builder.append(", children=[");
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/local/computer/OutlineImplTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698