diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-08-18 20:39:57 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-08-18 20:39:57 -0400 |
| commit | 967b649da20f1cb2011025456853cb55f25e9a88 (patch) | |
| tree | ffce4f06f5fbb833c8aee2ba7c6982156f7bfac4 /ast.c | |
| parent | d804b09b02b9c4a6ea6b16ae85524a704796cbc1 (diff) | |
Deprecate `#` operator in favor of .length and fix up some issues
Diffstat (limited to 'ast.c')
| -rw-r--r-- | ast.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -107,7 +107,6 @@ CORD ast_to_xml(ast_t *ast) T(Assign, "<Assign><targets>%r</targets><values>%r</values></Assign>", ast_list_to_xml(data.targets), ast_list_to_xml(data.values)) T(BinaryOp, "<BinaryOp op=\"%r\">%r %r</BinaryOp>", xml_escape(OP_NAMES[data.op]), ast_to_xml(data.lhs), ast_to_xml(data.rhs)) T(UpdateAssign, "<UpdateAssign op=\"%r\">%r %r</UpdateAssign>", xml_escape(OP_NAMES[data.op]), ast_to_xml(data.lhs), ast_to_xml(data.rhs)) - T(Length, "<Length>%r</Length>", ast_to_xml(data.value)) T(Negative, "<Negative>%r</Negative>", ast_to_xml(data.value)) T(Not, "<Not>%r</Not>", ast_to_xml(data.value)) T(HeapAllocate, "<HeapAllocate>%r</HeapAllocate>", ast_to_xml(data.value)) |
