Skip to content

Commit 160bebe

Browse files
committed
add default_args to VimNode struct
1 parent 4ac8de0 commit 160bebe

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

go/type.go

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,20 @@ type Cmd struct {
4040
}
4141

4242
type VimNode struct {
43-
type_ int // type -> type_
44-
pos *pos
45-
left *VimNode
46-
right *VimNode
47-
cond *VimNode
48-
rest *VimNode
49-
list []*VimNode
50-
rlist []*VimNode
51-
body []*VimNode
52-
op string
53-
str string
54-
depth int
55-
value interface{}
43+
type_ int // type -> type_
44+
pos *pos
45+
left *VimNode
46+
right *VimNode
47+
cond *VimNode
48+
rest *VimNode
49+
list []*VimNode
50+
rlist []*VimNode
51+
default_args []*VimNode
52+
body []*VimNode
53+
op string
54+
str string
55+
depth int
56+
value interface{}
5657

5758
ea *ExArg
5859
attr *FuncAttr

0 commit comments

Comments
 (0)