Home
last modified time | relevance | path

Searched refs:MatchValue (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Doc/library/
Dast.rst1309 .. class:: MatchValue(value)
1329 pattern=MatchValue(
1383 MatchValue(
1385 MatchValue(
1415 MatchValue(
1417 MatchValue(
1513 MatchValue(
1515 MatchValue(
1531 MatchValue(
1533 MatchValue(
[all …]
/third_party/python/Lib/test/
Dtest_ast.py1496 pattern_1 = ast.MatchValue(constant_1)
1499 pattern_x = ast.MatchValue(constant_x)
1507 ast.MatchValue(
1516 ast.MatchValue(
1525 ast.MatchValue(
1528 ast.MatchValue(
1531 ast.MatchValue(
/third_party/python/Parser/
DPython.asdl129 pattern = MatchValue(expr value)
/third_party/python/Include/internal/
Dpycore_ast.h571 } MatchValue; member
/third_party/python/Python/
Dast.c516 ret = validate_pattern_match_value(state, p->v.MatchValue.value); in validate_pattern()
Dast_opt.c808 CALL(astfold_expr, expr_ty, node_->v.MatchValue.value); in astfold_pattern()
Dsymtable.c1752 VISIT(st, expr, p->v.MatchValue.value); in symtable_visit_pattern()
DPython-ast.c3404 p->v.MatchValue.value = value; in _PyAST_MatchValue()
5155 value = ast2obj_expr(state, o->v.MatchValue.value); in ast2obj_pattern()
Dcompile.c6310 expr_ty value = p->v.MatchValue.value; in compiler_pattern_value()
/third_party/python/Misc/NEWS.d/
D3.10.0b1.rst236 Match patterns now use new dedicated AST nodes (``MatchValue``,