本文整理汇总了Python中jmespath.ast.field方法的典型用法代码示例。如果您正苦于以下问题:Python ast.field方法的具体用法?Python ast.field怎么用?Python ast.field使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jmespath.ast
的用法示例。
在下文中一共展示了ast.field方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _token_led_lparen
# 需要导入模块: from jmespath import ast [as 别名]
# 或者: from jmespath.ast import field [as 别名]
def _token_led_lparen(self, left):
if left['type'] != 'field':
# 0 - first func arg or closing paren.
# -1 - '(' token
# -2 - invalid function "name".
prev_t = self._lookahead_token(-2)
raise exceptions.ParseError(
prev_t['start'], prev_t['value'], prev_t['type'],
"Invalid function name '%s'" % prev_t['value'])
name = left['value']
args = []
while not self._current_token() == 'rparen':
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
示例2: _token_nud_unquoted_identifier
# 需要导入模块: from jmespath import ast [as 别名]
# 或者: from jmespath.ast import field [as 别名]
def _token_nud_unquoted_identifier(self, token):
return ast.field(token['value'])
示例3: _token_nud_quoted_identifier
# 需要导入模块: from jmespath import ast [as 别名]
# 或者: from jmespath.ast import field [as 别名]
def _token_nud_quoted_identifier(self, token):
field = ast.field(token['value'])
# You can't have a quoted identifier as a function
# name.
if self._current_token() == 'lparen':
t = self._lookahead_token(0)
raise exceptions.ParseError(
0, t['value'], t['type'],
'Quoted identifier not allowed for function names.')
return field