xgo/compiler/ast/assign_stmt.go

41 lines
871 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package ast
import (
"strings"
2019-01-11 13:27:28 +03:00
"github.com/d5/tengo/compiler/source"
"github.com/d5/tengo/compiler/token"
2019-01-09 10:17:42 +03:00
)
// AssignStmt represents an assignment statement.
2019-01-09 10:17:42 +03:00
type AssignStmt struct {
LHS []Expr
RHS []Expr
2019-01-09 10:17:42 +03:00
Token token.Token
TokenPos source.Pos
2019-01-09 10:17:42 +03:00
}
func (s *AssignStmt) stmtNode() {}
// Pos returns the position of first character belonging to the node.
func (s *AssignStmt) Pos() source.Pos {
return s.LHS[0].Pos()
2019-01-09 10:17:42 +03:00
}
// End returns the position of first character immediately after the node.
func (s *AssignStmt) End() source.Pos {
return s.RHS[len(s.RHS)-1].End()
2019-01-09 10:17:42 +03:00
}
func (s *AssignStmt) String() string {
var lhs, rhs []string
for _, e := range s.LHS {
2019-01-09 10:17:42 +03:00
lhs = append(lhs, e.String())
}
for _, e := range s.RHS {
2019-01-09 10:17:42 +03:00
rhs = append(rhs, e.String())
}
return strings.Join(lhs, ", ") + " " + s.Token.String() + " " + strings.Join(rhs, ", ")
}