summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/d5/tengo/compiler/ast/branch_stmt.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/d5/tengo/compiler/ast/branch_stmt.go')
-rw-r--r--vendor/github.com/d5/tengo/compiler/ast/branch_stmt.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/vendor/github.com/d5/tengo/compiler/ast/branch_stmt.go b/vendor/github.com/d5/tengo/compiler/ast/branch_stmt.go
new file mode 100644
index 00000000..f6c7fdea
--- /dev/null
+++ b/vendor/github.com/d5/tengo/compiler/ast/branch_stmt.go
@@ -0,0 +1,38 @@
+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
+}