Add cli go.sum

This commit is contained in:
Neemek 2024-12-13 11:34:27 +01:00
parent 62656c6dff
commit 61686b8b43
Signed by: neemek
GPG key ID: 28360A8951CD0E9B
3 changed files with 24 additions and 0 deletions

View file

@ -27,6 +27,7 @@ const (
CallNodeType
FunctionNodeType
ReturnNodeType
BreakpointNodeType
)
func (n NodeType) String() string {
@ -292,3 +293,13 @@ func (n ReturnNode) Type() NodeType {
func (n ReturnNode) String() string {
return fmt.Sprintf("return %s", n.value)
}
type BreakpointNode struct{}
func (n BreakpointNode) Type() NodeType {
return BreakpointNodeType
}
func (n BreakpointNode) String() string {
return "breakpoint"
}