-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswitch_stmt.go
49 lines (37 loc) · 1.05 KB
/
switch_stmt.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package goastutil
import (
"fmt"
"go/ast"
)
type SwitchStmt struct {
parent Stmt
*ast.SwitchStmt
}
func NewSwitchStmt(parent Stmt, stmt *ast.SwitchStmt) *SwitchStmt {
return &SwitchStmt{SwitchStmt: stmt, parent: parent}
}
func (s *SwitchStmt) PrependStmt(st string) error {
return prependStmt(st, s.parent, s.SwitchStmt)
}
func (s *SwitchStmt) AppendStmt(st string) error {
return appendStmt(st, s.parent, s.SwitchStmt)
}
func (s *SwitchStmt) StmtType() StmtType {
return SwitchStmtType
}
func (s *SwitchStmt) Tag() Expr {
return NewExpr(s.SwitchStmt.Tag)
}
func (s *SwitchStmt) Body() *BlockStmt {
return NewBlockStmt(s, s.SwitchStmt.Body)
}
// TODO: add PrependCase, InsertCase, and RemoveCase
// func (s *SwitchStmt) PrependCase() error { return nil }
// func (s *SwitchStmt) InsertCase() error { return nil }
// func (s *SwitchStmt) RemoveCase() error { return nil }
func (s *SwitchStmt) String() string {
if s.SwitchStmt.Tag == nil {
return fmt.Sprintf("switch {\n\t%s\n}", s.Body())
}
return fmt.Sprintf("switch %s %s", s.Tag(), s.Body())
}