write binding code

This commit is contained in:
2023-11-02 10:53:16 +08:00
parent ef5d1760a3
commit 68bffefe5a
8 changed files with 116 additions and 4 deletions

View File

@ -0,0 +1,12 @@
public class ExpFctParamDecl {
public VariableType mVarType;
public String mVarName;
public ExpFctParamDecl(VariableType vtype, String vname) {
mVarType = vtype;
mVarName = vname;
}
}