mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
36 lines
672 B
Go
36 lines
672 B
Go
|
package ast
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
|
||
|
"github.com/d5/tengo/compiler/source"
|
||
|
)
|
||
|
|
||
|
// BlockStmt represents a block statement.
|
||
|
type BlockStmt struct {
|
||
|
Stmts []Stmt
|
||
|
LBrace source.Pos
|
||
|
RBrace source.Pos
|
||
|
}
|
||
|
|
||
|
func (s *BlockStmt) stmtNode() {}
|
||
|
|
||
|
// Pos returns the position of first character belonging to the node.
|
||
|
func (s *BlockStmt) Pos() source.Pos {
|
||
|
return s.LBrace
|
||
|
}
|
||
|
|
||
|
// End returns the position of first character immediately after the node.
|
||
|
func (s *BlockStmt) End() source.Pos {
|
||
|
return s.RBrace + 1
|
||
|
}
|
||
|
|
||
|
func (s *BlockStmt) String() string {
|
||
|
var list []string
|
||
|
for _, e := range s.Stmts {
|
||
|
list = append(list, e.String())
|
||
|
}
|
||
|
|
||
|
return "{" + strings.Join(list, "; ") + "}"
|
||
|
}
|