mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 06:50:26 +00:00
31 lines
689 B
Go
31 lines
689 B
Go
|
package ast
|
||
|
|
||
|
import (
|
||
|
"github.com/d5/tengo/compiler/source"
|
||
|
"github.com/d5/tengo/compiler/token"
|
||
|
)
|
||
|
|
||
|
// BinaryExpr represents a binary operator expression.
|
||
|
type BinaryExpr struct {
|
||
|
LHS Expr
|
||
|
RHS Expr
|
||
|
Token token.Token
|
||
|
TokenPos source.Pos
|
||
|
}
|
||
|
|
||
|
func (e *BinaryExpr) exprNode() {}
|
||
|
|
||
|
// Pos returns the position of first character belonging to the node.
|
||
|
func (e *BinaryExpr) Pos() source.Pos {
|
||
|
return e.LHS.Pos()
|
||
|
}
|
||
|
|
||
|
// End returns the position of first character immediately after the node.
|
||
|
func (e *BinaryExpr) End() source.Pos {
|
||
|
return e.RHS.End()
|
||
|
}
|
||
|
|
||
|
func (e *BinaryExpr) String() string {
|
||
|
return "(" + e.LHS.String() + " " + e.Token.String() + " " + e.RHS.String() + ")"
|
||
|
}
|