public int AllocateVariable(string name, Type type) { var offset = NextVariableOffset; VariableOffsetEnvironment[name] = offset; VariableType[name] = type; NextVariableOffset--; return(offset); }
public IValue Visit(Syntax.Type type) { return(null);// new PointerValue(0); ////?????????????????????????? }
public Statement Visit(Syntax.Type type) { return(null); }
public Void Visit(Syntax.Type type, SortedSet <string> free) { return(null); }