Files
spl/ast/ast.go
2025-12-07 13:00:59 +07:00

10 lines
83 B
Go

package ast
type Statement interface {
stmt()
}
type Expr interface {
expr()
}