Skip to content

Commit

Permalink
support lambda
Browse files Browse the repository at this point in the history
  • Loading branch information
haya14busa committed Sep 14, 2016
1 parent 45b1bc8 commit de16038
Show file tree
Hide file tree
Showing 3 changed files with 96 additions and 6 deletions.
1 change: 1 addition & 0 deletions go/typedefs.vim
Expand Up @@ -321,6 +321,7 @@ call extend(s:typedefs.func, {
\ 'Compiler.compile_reg': { 'in': ['*VimNode'], 'out': ['string'] },
\ 'Compiler.compile_curlynamepart': { 'in': ['*VimNode'], 'out': ['string'] },
\ 'Compiler.compile_curlynameexpr': { 'in': ['*VimNode'], 'out': ['string'] },
\ 'Compiler.compile_lambda': { 'in': ['*VimNode'], 'out': ['string'] },
\ })

function! ImportTypedefs() abort
Expand Down
100 changes: 94 additions & 6 deletions go/vimlparser.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node.go
Expand Up @@ -92,4 +92,5 @@ const (
NodeReg = 89
NodeCurlynamepart = 90
NodeCurlynameexpr = 91
NodeLambda = 92
)

0 comments on commit de16038

Please sign in to comment.