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,16 @@
import java.util.Vector;
public class ExpFctDecl {
public String mFctName;
public VariableType mFctRetType;
public Vector<ExpFctParamDecl> mFctParams;
public ExpFctDecl(String fct_name, VariableType ret_type) {
mFctName = fct_name;
mFctRetType = ret_type;
mFctParams = new Vector<ExpFctParamDecl>();
}
}