D | LazyValue.java | 40 import com.intellij.openapi.project.Project; 52 private final Project project; field in LazyValue 59 public LazyValue(SmaliMethod method, Project project, int registerNumber, String type) { in LazyValue() argument 61 this.project = project; in LazyValue() 66 …public static LazyValue create(@Nonnull SmaliMethod method, @Nonnull Project project, int register… in create() argument 69 return new LazyByteValue(method, project, registerNumber, type); in create() 71 return new LazyShortValue(method, project, registerNumber, type); in create() 73 return new LazyLongValue(method, project, registerNumber, type); in create() 75 return new LazyIntegerValue(method, project, registerNumber, type); in create() 77 return new LazyFloatValue(method, project, registerNumber, type); in create() [all …]
|