예제 #1
0
    public object VisitInputVarStmt(Stmt.InputVar stmt, object options = null)
    {
        var tokens = (Token[])stmt.type.Accept(this);

        AddSymbolDefinition(tokens[0].lexeme, stmt.token.lexeme, AccessModifier.Private, false, tokens);
        return(null);
    }
예제 #2
0
 public object VisitInputVarStmt(Stmt.InputVar invar, object options)
 {
     return(invar.type.token.lexeme + " " + invar.token.lexeme);
 }