1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef VIRTUALMATH___RUN_H
- #define VIRTUALMATH___RUN_H
- #include "__virtualmath.h"
- char *setStrVarName(char *old, bool free_old, struct Inter *inter);
- char *setNumVarName(vnum num, struct Inter *inter);
- char *getNameFromValue(Value *value, struct Inter *inter);
- ResultType getBaseVarInfo(char **name, int *times, INTER_FUNCTIONSIG);
- ResultType getBaseSVarInfo(char **name, int *times, INTER_FUNCTIONSIG);
- ResultType getVarInfo(char **name, int *times, INTER_FUNCTIONSIG);
- bool popStatementVarList(Statement *funtion_st, VarList **function_var, VarList *out_var, Inter *inter);
- void newFunctionYield(Statement *funtion_st, Statement *node, VarList *new_var, Inter *inter);
- void updateFunctionYield(Statement *function_st, Statement *node);
- void updateBranchYield(Statement *branch_st, Statement *node, StatementList *sl_node, enum StatementInfoStatus status);
- void newWithBranchYield(Statement *branch_st, Statement *node, StatementList *sl_node, VarList *new_var, enum StatementInfoStatus status,
- Inter *inter, LinkValue *value, LinkValue *_exit_, LinkValue *_enter_);
- void newForBranchYield(Statement *branch_st, Statement *node, StatementList *sl_node, VarList *new_var, enum StatementInfoStatus status,
- Inter *inter, LinkValue *iter);
- ResultType setFunctionArgument(struct Argument **arg, LinkValue *function_value, fline line, char *file, INTER_FUNCTIONSIG_NOT_ST);
- void freeFunctionArgument(Argument *arg, Argument *base);
- LinkValue *findStrVar(char *name, bool free_old, INTER_FUNCTIONSIG_CORE);
- LinkValue *checkStrVar(char *name, bool free_old, INTER_FUNCTIONSIG_CORE);
- void addStrVar(char *name, bool free_old, bool setting, LinkValue *value, LinkValue *father, INTER_FUNCTIONSIG_CORE);
- LinkValue *findAttributes(char *name, bool free_old, LinkValue *value, Inter *inter);
- void addAttributes(char *name, bool free_old, LinkValue *value, LinkValue *belong, Inter *inter);
- void newObjectSetting(LinkValue *name, LinkValue *belong, Inter *inter);
- ResultType elementDownOne(LinkValue *element, LinkValue *index, fline line, char *file, INTER_FUNCTIONSIG_NOT_ST);
- ResultType getIter(LinkValue *value, int status, fline line, char *file, INTER_FUNCTIONSIG_NOT_ST);
- bool checkBool(LinkValue *value, fline line, char *file, INTER_FUNCTIONSIG_NOT_ST);
- char *getRepoStr(LinkValue *value, bool is_repot, fline line, char *file, INTER_FUNCTIONSIG_NOT_ST);
- bool is_iterStop(LinkValue *value, Inter *inter);
- bool is_quitExc(LinkValue *value, Inter *inter);
- bool checkAut(enum ValueAuthority value, enum ValueAuthority base, fline line, char *file, char *name, bool pri_auto, INTER_FUNCTIONSIG_NOT_ST);
- #endif //VIRTUALMATH___RUN_H
|