new eval.go
This commit is contained in:
parent
89d6a1013b
commit
2a2e5b4527
15 changed files with 382 additions and 1215 deletions
64
ast/print.go
64
ast/print.go
|
|
@ -19,39 +19,8 @@ package ast
|
|||
|
||||
import (
|
||||
"strings"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
/* Print function which is better suited for repl.
|
||||
* This one prints the SEXPRs as one would write them.
|
||||
*/
|
||||
func (t *Token) String() string {
|
||||
switch t.Tag {
|
||||
case STRING:
|
||||
return "\"" + t.Inner.(string) + "\""
|
||||
|
||||
case NUMBER, BOOL:
|
||||
return t.Inner.(string)
|
||||
|
||||
case LIST:
|
||||
repr := "("
|
||||
if t.Inner.(*Token) == nil {
|
||||
return repr + ")"
|
||||
}
|
||||
|
||||
for i := t.Inner.(*Token); i != nil; i = i.Next {
|
||||
repr = repr + i.String() + " "
|
||||
}
|
||||
// remove trailing space
|
||||
return repr[:len(repr)-1] + ")"
|
||||
|
||||
case SYMBOL:
|
||||
return "<" + t.Inner.(string) + ">"
|
||||
}
|
||||
|
||||
return "[UNKNOWN CELL TYPE]"
|
||||
}
|
||||
|
||||
/* Print function which breaks each embedded list out on individual lines.
|
||||
* Used in the print_ast debug tool. not too useful for repl applications.
|
||||
* Very useful for debugging syntax though.
|
||||
|
|
@ -74,42 +43,13 @@ loop:
|
|||
|
||||
for iter := i; iter != nil; iter = iter.Next {
|
||||
if iter.Tag == LIST {
|
||||
lists.Push(iter.Inner.(*Token))
|
||||
lists.Push(iter.Expand())
|
||||
}
|
||||
|
||||
constructor.WriteString(FmtToken(iter))
|
||||
constructor.WriteString(iter.FmtToken())
|
||||
}
|
||||
|
||||
println(constructor.String())
|
||||
goto loop
|
||||
}
|
||||
|
||||
func FmtToken(arg *Token) string {
|
||||
suffix := "->"
|
||||
if arg.Next == nil {
|
||||
suffix = ""
|
||||
}
|
||||
|
||||
switch arg.Tag {
|
||||
case LIST:
|
||||
return fmt.Sprintf("(%s, [List])%s", "LIST", suffix)
|
||||
|
||||
default:
|
||||
return fmt.Sprintf("(%s, %s)%s", GetTagAsStr(arg.Tag), arg.Inner, suffix)
|
||||
}
|
||||
}
|
||||
|
||||
func GetTagAsStr(tag Token_t) string {
|
||||
switch tag {
|
||||
case LIST:
|
||||
return "LIST"
|
||||
case STRING:
|
||||
return "STRING"
|
||||
case NUMBER:
|
||||
return "NUMBER"
|
||||
case SYMBOL:
|
||||
return "SYMBOL"
|
||||
}
|
||||
return "UNKNOWN"
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue