Skip to content

Commit

Permalink
Initial support for lambda (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-takata authored and Kuniwak committed Aug 2, 2017
1 parent 4763ff7 commit f78b0f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions vint/ast/node_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,4 @@ class NodeType(Enum):
REG = 89
CURLYNAMEPART = 90
CURLYNAMEEXPR = 91
LAMBDA = 92
1 change: 1 addition & 0 deletions vint/ast/traversing.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ def call_if_def(func, node):
NodeType.REG: [],
NodeType.CURLYNAMEPART: [],
NodeType.CURLYNAMEEXPR: [],
NodeType.LAMBDA: [],
}


Expand Down

0 comments on commit f78b0f0

Please sign in to comment.