finish recognization part of bmap binding

This commit is contained in:
2023-11-02 12:40:50 +08:00
parent 68bffefe5a
commit 57e6f14067
6 changed files with 175 additions and 20 deletions

View File

@ -6,9 +6,9 @@ public class ExpFctDecl {
public VariableType mFctRetType;
public Vector<ExpFctParamDecl> mFctParams;
public ExpFctDecl(String fct_name, VariableType ret_type) {
mFctName = fct_name;
mFctRetType = ret_type;
public ExpFctDecl() {
mFctName = "";
mFctRetType = new VariableType();
mFctParams = new Vector<ExpFctParamDecl>();
}