@coverage dart.server.generated.types
Definition at line 30 of file InlineMethodFeedback.java.
◆ InlineMethodFeedback()
org.dartlang.analysis.server.protocol.InlineMethodFeedback.InlineMethodFeedback |
( |
String |
className, |
|
|
String |
methodName, |
|
|
boolean |
isDeclaration |
|
) |
| |
|
inline |
◆ equals()
boolean org.dartlang.analysis.server.protocol.InlineMethodFeedback.equals |
( |
Object |
obj | ) |
|
|
inline |
◆ fromJson()
static InlineMethodFeedback org.dartlang.analysis.server.protocol.InlineMethodFeedback.fromJson |
( |
JsonObject |
jsonObject | ) |
|
|
inlinestatic |
◆ fromJsonArray()
static List< InlineMethodFeedback > org.dartlang.analysis.server.protocol.InlineMethodFeedback.fromJsonArray |
( |
JsonArray |
jsonArray | ) |
|
|
inlinestatic |
Definition at line 80 of file InlineMethodFeedback.java.
80 {
81 if (jsonArray == null) {
83 }
84 ArrayList<InlineMethodFeedback> list = new ArrayList<InlineMethodFeedback>(jsonArray.size());
85 Iterator<JsonElement> iterator = jsonArray.iterator();
86 while (iterator.hasNext()) {
87 list.add(
fromJson(iterator.next().getAsJsonObject()));
88 }
89 return list;
90 }
static InlineMethodFeedback fromJson(JsonObject jsonObject)
static final List< InlineMethodFeedback > EMPTY_LIST
◆ getClassName()
String org.dartlang.analysis.server.protocol.InlineMethodFeedback.getClassName |
( |
| ) |
|
|
inline |
The name of the class enclosing the method being inlined. If not a class member is being inlined, this field will be absent.
Definition at line 96 of file InlineMethodFeedback.java.
96 {
97 return className;
98 }
◆ getMethodName()
String org.dartlang.analysis.server.protocol.InlineMethodFeedback.getMethodName |
( |
| ) |
|
|
inline |
The name of the method (or function) being inlined.
Definition at line 110 of file InlineMethodFeedback.java.
110 {
111 return methodName;
112 }
◆ hashCode()
int org.dartlang.analysis.server.protocol.InlineMethodFeedback.hashCode |
( |
| ) |
|
|
inline |
◆ isDeclaration()
boolean org.dartlang.analysis.server.protocol.InlineMethodFeedback.isDeclaration |
( |
| ) |
|
|
inline |
True if the declaration of the method is selected. So all references should be inlined.
Definition at line 103 of file InlineMethodFeedback.java.
103 {
104 return isDeclaration;
105 }
◆ toJson()
JsonObject org.dartlang.analysis.server.protocol.InlineMethodFeedback.toJson |
( |
| ) |
|
|
inline |
◆ toString()
String org.dartlang.analysis.server.protocol.InlineMethodFeedback.toString |
( |
| ) |
|
|
inline |
◆ EMPTY_ARRAY
◆ EMPTY_LIST
final List<InlineMethodFeedback> org.dartlang.analysis.server.protocol.InlineMethodFeedback.EMPTY_LIST = Lists.newArrayList() |
|
static |
The documentation for this class was generated from the following file: