mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-14 17:50:26 +00:00
39 lines
775 B
Go
39 lines
775 B
Go
|
package ast
|
||
|
|
||
|
import (
|
||
|
"github.com/d5/tengo/compiler/source"
|
||
|
"github.com/d5/tengo/compiler/token"
|
||
|
)
|
||
|
|
||
|
// BranchStmt represents a branch statement.
|
||
|
type BranchStmt struct {
|
||
|
Token token.Token
|
||
|
TokenPos source.Pos
|
||
|
Label *Ident
|
||
|
}
|
||
|
|
||
|
func (s *BranchStmt) stmtNode() {}
|
||
|
|
||
|
// Pos returns the position of first character belonging to the node.
|
||
|
func (s *BranchStmt) Pos() source.Pos {
|
||
|
return s.TokenPos
|
||
|
}
|
||
|
|
||
|
// End returns the position of first character immediately after the node.
|
||
|
func (s *BranchStmt) End() source.Pos {
|
||
|
if s.Label != nil {
|
||
|
return s.Label.End()
|
||
|
}
|
||
|
|
||
|
return source.Pos(int(s.TokenPos) + len(s.Token.String()))
|
||
|
}
|
||
|
|
||
|
func (s *BranchStmt) String() string {
|
||
|
var label string
|
||
|
if s.Label != nil {
|
||
|
label = " " + s.Label.Name
|
||
|
}
|
||
|
|
||
|
return s.Token.String() + label
|
||
|
}
|