本文整理汇总了Python中jmespath.ast.current_node方法的典型用法代码示例。如果您正苦于以下问题:Python ast.current_node方法的具体用法?Python ast.current_node怎么用?Python ast.current_node使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jmespath.ast
的用法示例。
在下文中一共展示了ast.current_node方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _token_nud_current
# 需要导入模块: from jmespath import ast [as 别名]
# 或者: from jmespath.ast import current_node [as 别名]
def _token_nud_current(self, token):
return ast.current_node()
示例2: _token_led_lparen
# 需要导入模块: from jmespath import ast [as 别名]
# 或者: from jmespath.ast import current_node [as 别名]
def _token_led_lparen(self, left):
name = left['value']
args = []
while not self._current_token() == 'rparen':
if self._current_token() == 'current':
expression = ast.current_node()
self._advance()
else:
expression = self._expression()
if self._current_token() == 'comma':
self._match('comma')
args.append(expression)
self._match('rparen')
function_node = ast.function_expression(name, args)
return function_node