blob: b8ee55c21d5c4018f138597c40092f2e1a6de744 [file] [log] [blame]
package main
import "fmt"
type AST interface {
eval(*Evaluator)
show()
}
type ASTBase struct {
filename string
lineno int
}
type AssignAST struct {
ASTBase
lhs string
rhs string
op string
}
func (ast *AssignAST) eval(ev *Evaluator) {
ev.evalAssign(ast)
}
func (ast *AssignAST) evalRHS(ev *Evaluator, lhs string) Var {
switch ast.op {
case ":=":
// TODO: origin
return SimpleVar{value: ev.evalExpr(ast.rhs)}
case "=":
return RecursiveVar{expr: ast.rhs}
case "+=":
prev := ev.LookupVar(lhs)
if !prev.IsDefined() {
return RecursiveVar{expr: ast.rhs}
}
return prev.Append(ev, ast.rhs)
case "?=":
prev := ev.LookupVar(lhs)
if prev.IsDefined() {
return prev
}
return RecursiveVar{expr: ast.rhs}
default:
panic(fmt.Sprintf("unknown assign op: %q", ast.op))
}
}
func (ast *AssignAST) show() {
Log("%s=%q", ast.lhs, ast.rhs)
}
// Note we cannot be sure what this is, until all variables in |expr|
// are expanded.
type MaybeRuleAST struct {
ASTBase
expr string
cmds []string
cmdLineno int
}
func (ast *MaybeRuleAST) eval(ev *Evaluator) {
ev.evalMaybeRule(ast)
}
func (ast *MaybeRuleAST) show() {
Log("%s", ast.expr)
for _, cmd := range ast.cmds {
Log("\t%s", cmd)
}
}
type IncludeAST struct {
ASTBase
expr string
op string
}
func (ast *IncludeAST) eval(ev *Evaluator) {
ev.evalInclude(ast)
}
func (ast *IncludeAST) show() {
Log("include %s", ast.expr)
}
type IfAST struct {
ASTBase
op string
lhs string
rhs string // Empty if |op| is ifdef or ifndef.
trueStmts []AST
falseStmts []AST
}
func (ast *IfAST) eval(ev *Evaluator) {
ev.evalIf(ast)
}
func (ast *IfAST) show() {
// TODO
Log("if")
}