Skip to content

Commit

Permalink
rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
NGSpace committed Dec 19, 2024
1 parent 0d66830 commit 3301312
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ public class V2ClassPropertyCall extends AV2Value {
private String funcName = "";
private String fieldName = "";

public V2ClassPropertyCall(int line, int charpos, String v, AV2Compiler c, V2Runtime runtime,
public V2ClassPropertyCall(int line, int charpos, String value, AV2Compiler c, V2Runtime runtime,
AV2Value classobj, String prop) throws CompileException {
super(line, charpos, v, c);
super(line, charpos, value, c);
this.classobj = classobj;
if (!prop.startsWith("(")&&prop.endsWith(")")) {
int argStart = prop.indexOf("(");
Expand Down

0 comments on commit 3301312

Please sign in to comment.