Package org.polystat.py2eo.parser
Interface PythonParserVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
PythonParserBaseVisitor
public interface PythonParserVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
PythonParser.-
Method Summary
-
Method Details
-
visitFile
Visit a parse tree produced byPythonParser.file().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInteractive
Visit a parse tree produced byPythonParser.interactive().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEval
Visit a parse tree produced byPythonParser.eval().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunc_type
Visit a parse tree produced byPythonParser.func_type().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFstring
Visit a parse tree produced byPythonParser.fstring().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitType_expressions
Visit a parse tree produced byPythonParser.type_expressions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatements
Visit a parse tree produced byPythonParser.statements().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatement
Visit a parse tree produced byPythonParser.statement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatement_newline
Visit a parse tree produced byPythonParser.statement_newline().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimple_stmts
Visit a parse tree produced byPythonParser.simple_stmts().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimple_stmt
Visit a parse tree produced byPythonParser.simple_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompound_stmt
Visit a parse tree produced byPythonParser.compound_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignment
Visit a parse tree produced byPythonParser.assignment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAugassign
Visit a parse tree produced byPythonParser.augassign().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGlobal_stmt
Visit a parse tree produced byPythonParser.global_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonlocal_stmt
Visit a parse tree produced byPythonParser.nonlocal_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitYield_stmt
Visit a parse tree produced byPythonParser.yield_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssert_stmt
Visit a parse tree produced byPythonParser.assert_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDel_stmt
Visit a parse tree produced byPythonParser.del_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImport_stmt
Visit a parse tree produced byPythonParser.import_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImport_name
Visit a parse tree produced byPythonParser.import_name().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImport_from
Visit a parse tree produced byPythonParser.import_from().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImport_from_targets
Visit a parse tree produced byPythonParser.import_from_targets().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImport_from_as_names
Visit a parse tree produced byPythonParser.import_from_as_names().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImport_from_as_name
Visit a parse tree produced byPythonParser.import_from_as_name().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDotted_as_names
Visit a parse tree produced byPythonParser.dotted_as_names().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDotted_as_name
Visit a parse tree produced byPythonParser.dotted_as_name().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDotted_name
Visit a parse tree produced byPythonParser.dotted_name().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIf_stmt
Visit a parse tree produced byPythonParser.if_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElif_stmt
Visit a parse tree produced byPythonParser.elif_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElse_block
Visit a parse tree produced byPythonParser.else_block().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhile_stmt
Visit a parse tree produced byPythonParser.while_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFor_stmt
Visit a parse tree produced byPythonParser.for_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWith_stmt
Visit a parse tree produced byPythonParser.with_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWith_item
Visit a parse tree produced byPythonParser.with_item().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTry_stmt
Visit a parse tree produced byPythonParser.try_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExcept_block
Visit a parse tree produced byPythonParser.except_block().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFinally_block
Visit a parse tree produced byPythonParser.finally_block().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMatch_stmt
Visit a parse tree produced byPythonParser.match_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubject_expr
Visit a parse tree produced byPythonParser.subject_expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCase_block
Visit a parse tree produced byPythonParser.case_block().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGuard
Visit a parse tree produced byPythonParser.guard().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPatterns
Visit a parse tree produced byPythonParser.patterns().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPattern
Visit a parse tree produced byPythonParser.pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAs_pattern
Visit a parse tree produced byPythonParser.as_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOr_pattern
Visit a parse tree produced byPythonParser.or_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClosed_pattern
Visit a parse tree produced byPythonParser.closed_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteral_pattern
Visit a parse tree produced byPythonParser.literal_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteral_expr
Visit a parse tree produced byPythonParser.literal_expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComplex_number
Visit a parse tree produced byPythonParser.complex_number().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSigned_number
Visit a parse tree produced byPythonParser.signed_number().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSigned_real_number
Visit a parse tree produced byPythonParser.signed_real_number().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReal_number
Visit a parse tree produced byPythonParser.real_number().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImaginary_number
Visit a parse tree produced byPythonParser.imaginary_number().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCapture_pattern
Visit a parse tree produced byPythonParser.capture_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPattern_capture_target
Visit a parse tree produced byPythonParser.pattern_capture_target().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWildcard_pattern
Visit a parse tree produced byPythonParser.wildcard_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue_pattern
Visit a parse tree produced byPythonParser.value_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttr
Visit a parse tree produced byPythonParser.attr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitName_or_attr
Visit a parse tree produced byPythonParser.name_or_attr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroup_pattern
Visit a parse tree produced byPythonParser.group_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSequence_pattern
Visit a parse tree produced byPythonParser.sequence_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpen_sequence_pattern
Visit a parse tree produced byPythonParser.open_sequence_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMaybe_sequence_pattern
Visit a parse tree produced byPythonParser.maybe_sequence_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMaybe_star_pattern
Visit a parse tree produced byPythonParser.maybe_star_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStar_pattern
Visit a parse tree produced byPythonParser.star_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMapping_pattern
Visit a parse tree produced byPythonParser.mapping_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitItems_pattern
Visit a parse tree produced byPythonParser.items_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKey_value_pattern
Visit a parse tree produced byPythonParser.key_value_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDouble_star_pattern
Visit a parse tree produced byPythonParser.double_star_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClass_pattern
Visit a parse tree produced byPythonParser.class_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPositional_patterns
Visit a parse tree produced byPythonParser.positional_patterns().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyword_patterns
Visit a parse tree produced byPythonParser.keyword_patterns().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyword_pattern
Visit a parse tree produced byPythonParser.keyword_pattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturn_stmt
Visit a parse tree produced byPythonParser.return_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRaise_stmt
Visit a parse tree produced byPythonParser.raise_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunction_def
Visit a parse tree produced byPythonParser.function_def().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunction_def_raw
Visit a parse tree produced byPythonParser.function_def_raw().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunc_type_comment
Visit a parse tree produced byPythonParser.func_type_comment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParams
Visit a parse tree produced byPythonParser.params().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParameters
Visit a parse tree produced byPythonParser.parameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSlash_no_default
Visit a parse tree produced byPythonParser.slash_no_default().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSlash_with_default
Visit a parse tree produced byPythonParser.slash_with_default().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStar_etc
Visit a parse tree produced byPythonParser.star_etc().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKwds
Visit a parse tree produced byPythonParser.kwds().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParam_no_default
Visit a parse tree produced byPythonParser.param_no_default().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParam_with_default
Visit a parse tree produced byPythonParser.param_with_default().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParam_maybe_default
Visit a parse tree produced byPythonParser.param_maybe_default().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParam
Visit a parse tree produced byPythonParser.param().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotation
Visit a parse tree produced byPythonParser.annotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefault_assignment
Visit a parse tree produced byPythonParser.default_assignment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDecorators
Visit a parse tree produced byPythonParser.decorators().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClass_def
Visit a parse tree produced byPythonParser.class_def().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClass_def_raw
Visit a parse tree produced byPythonParser.class_def_raw().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlock
Visit a parse tree produced byPythonParser.block().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStar_expressions
Visit a parse tree produced byPythonParser.star_expressions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStar_expression
Visit a parse tree produced byPythonParser.star_expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStar_named_expressions
Visit a parse tree produced byPythonParser.star_named_expressions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStar_named_expression
Visit a parse tree produced byPythonParser.star_named_expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignment_expression
Visit a parse tree produced byPythonParser.assignment_expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNamed_expression
Visit a parse tree produced byPythonParser.named_expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotated_rhs
Visit a parse tree produced byPythonParser.annotated_rhs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressions
Visit a parse tree produced byPythonParser.expressions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression
Visit a parse tree produced byPythonParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambdef
Visit a parse tree produced byPythonParser.lambdef().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambda_params
Visit a parse tree produced byPythonParser.lambda_params().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambda_parameters
Visit a parse tree produced byPythonParser.lambda_parameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambda_slash_no_default
Visit a parse tree produced byPythonParser.lambda_slash_no_default().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambda_slash_with_default
Visit a parse tree produced byPythonParser.lambda_slash_with_default().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambda_star_etc
Visit a parse tree produced byPythonParser.lambda_star_etc().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambda_kwds
Visit a parse tree produced byPythonParser.lambda_kwds().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambda_param_no_default
Visit a parse tree produced byPythonParser.lambda_param_no_default().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambda_param_with_default
Visit a parse tree produced byPythonParser.lambda_param_with_default().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambda_param_maybe_default
Visit a parse tree produced byPythonParser.lambda_param_maybe_default().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambda_param
Visit a parse tree produced byPythonParser.lambda_param().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDisjunction
Visit a parse tree produced byPythonParser.disjunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConjunction
Visit a parse tree produced byPythonParser.conjunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInversion
Visit a parse tree produced byPythonParser.inversion().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparison
Visit a parse tree produced byPythonParser.comparison().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompare_op_bitwise_or_pair
Visit a parse tree produced byPythonParser.compare_op_bitwise_or_pair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEq_bitwise_or
Visit a parse tree produced byPythonParser.eq_bitwise_or().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNoteq_bitwise_or
Visit a parse tree produced byPythonParser.noteq_bitwise_or().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLte_bitwise_or
Visit a parse tree produced byPythonParser.lte_bitwise_or().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLt_bitwise_or
Visit a parse tree produced byPythonParser.lt_bitwise_or().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGte_bitwise_or
Visit a parse tree produced byPythonParser.gte_bitwise_or().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGt_bitwise_or
Visit a parse tree produced byPythonParser.gt_bitwise_or().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotin_bitwise_or
Visit a parse tree produced byPythonParser.notin_bitwise_or().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIn_bitwise_or
Visit a parse tree produced byPythonParser.in_bitwise_or().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsnot_bitwise_or
Visit a parse tree produced byPythonParser.isnot_bitwise_or().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIs_bitwise_or
Visit a parse tree produced byPythonParser.is_bitwise_or().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitwise_or
Visit a parse tree produced byPythonParser.bitwise_or().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitwise_xor
Visit a parse tree produced byPythonParser.bitwise_xor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitwise_and
Visit a parse tree produced byPythonParser.bitwise_and().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShift_expr
Visit a parse tree produced byPythonParser.shift_expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSum
Visit a parse tree produced byPythonParser.sum().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTerm
Visit a parse tree produced byPythonParser.term().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFactor
Visit a parse tree produced byPythonParser.factor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPower
Visit a parse tree produced byPythonParser.power().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAwait_primary
Visit a parse tree produced byPythonParser.await_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimary
Visit a parse tree produced byPythonParser.primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSlices
Visit a parse tree produced byPythonParser.slices().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSlice
Visit a parse tree produced byPythonParser.slice().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtom
Visit a parse tree produced byPythonParser.atom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStrings
Visit a parse tree produced byPythonParser.strings().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitList
Visit a parse tree produced byPythonParser.list().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListcomp
Visit a parse tree produced byPythonParser.listcomp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTuple
Visit a parse tree produced byPythonParser.tuple().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroup
Visit a parse tree produced byPythonParser.group().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenexp
Visit a parse tree produced byPythonParser.genexp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSet
Visit a parse tree produced byPythonParser.set().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetcomp
Visit a parse tree produced byPythonParser.setcomp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDict
Visit a parse tree produced byPythonParser.dict().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDictcomp
Visit a parse tree produced byPythonParser.dictcomp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDouble_starred_kvpairs
Visit a parse tree produced byPythonParser.double_starred_kvpairs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDouble_starred_kvpair
Visit a parse tree produced byPythonParser.double_starred_kvpair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKvpair
Visit a parse tree produced byPythonParser.kvpair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFor_if_clauses
Visit a parse tree produced byPythonParser.for_if_clauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFor_if_clause
Visit a parse tree produced byPythonParser.for_if_clause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitYield_expr
Visit a parse tree produced byPythonParser.yield_expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArguments
Visit a parse tree produced byPythonParser.arguments().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArgs
Visit a parse tree produced byPythonParser.args().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArg
Visit a parse tree produced byPythonParser.arg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKwargs
Visit a parse tree produced byPythonParser.kwargs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStarred_expression
Visit a parse tree produced byPythonParser.starred_expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKwarg_or_starred
Visit a parse tree produced byPythonParser.kwarg_or_starred().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKwarg_or_double_starred
Visit a parse tree produced byPythonParser.kwarg_or_double_starred().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStar_targets
Visit a parse tree produced byPythonParser.star_targets().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStar_targets_list_seq
Visit a parse tree produced byPythonParser.star_targets_list_seq().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStar_targets_tuple_seq
Visit a parse tree produced byPythonParser.star_targets_tuple_seq().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStar_target
Visit a parse tree produced byPythonParser.star_target().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTarget_with_star_atom
Visit a parse tree produced byPythonParser.target_with_star_atom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStar_atom
Visit a parse tree produced byPythonParser.star_atom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingle_target
Visit a parse tree produced byPythonParser.single_target().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingle_subscript_attribute_target
T visitSingle_subscript_attribute_target(PythonParser.Single_subscript_attribute_targetContext ctx)Visit a parse tree produced byPythonParser.single_subscript_attribute_target().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDel_targets
Visit a parse tree produced byPythonParser.del_targets().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDel_target
Visit a parse tree produced byPythonParser.del_target().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDel_t_atom
Visit a parse tree produced byPythonParser.del_t_atom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitT_primary
Visit a parse tree produced byPythonParser.t_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMatch_skw
Visit a parse tree produced byPythonParser.match_skw().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCase_skw
Visit a parse tree produced byPythonParser.case_skw().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnderscore_skw
Visit a parse tree produced byPythonParser.underscore_skw().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitName_except_underscore
Visit a parse tree produced byPythonParser.name_except_underscore().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-