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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/model/DartFunction.java

Issue 11577022: Issue 7093. Support for inlining function references. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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
Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/model/DartFunction.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/model/DartFunction.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/model/DartFunction.java
index 17ef93b37011d8f8abb7c9fd022ef8d3d158b38d..69ff55480e310556d1f43779bc0d2f9d535b826c 100644
--- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/model/DartFunction.java
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/model/DartFunction.java
@@ -70,6 +70,11 @@ public interface DartFunction extends CompilationUnitElement, ParentElement, Sou
public SourceRange getParametersCloseParen() throws DartModelException;
/**
+ * @return the {@link SourceRange} of open paren in parameters declaration.
+ */
+ public SourceRange getParametersOpenParen() throws DartModelException;
+
+ /**
* Return an array containing the names of the parameter types for this function, or an empty
* array if this function does not have any parameters. In the case where the type of a parameter
* is a function type, this method will return a string that contains only the types of the

Powered by Google App Engine
This is Rietveld 408576698