2018-10-31 15:05:17 -07:00
|
|
|
#!/usr/bin/env nomsu -V4.8.10
|
2018-09-21 00:30:28 -07:00
|
|
|
# This file contains the code to convert syntax trees to Nomsu code
|
2018-09-28 18:36:36 -07:00
|
|
|
use "nomnom/code_obj.nom"
|
|
|
|
use "nomnom/parser.nom"
|
2018-09-21 00:30:28 -07:00
|
|
|
|
|
|
|
# TODO: maybe re-implement the fancy coroutine checker that aborts early if nomsu gets too long
|
2018-10-31 15:05:17 -07:00
|
|
|
externally (%tree decompiled inline) means:
|
2018-09-21 00:30:28 -07:00
|
|
|
assume (%tree is a "Syntax Tree")
|
|
|
|
if %tree.type is:
|
|
|
|
"Action":
|
|
|
|
%nomsu = (Nomsu Code from %tree)
|
|
|
|
if %tree.target:
|
2018-10-03 16:26:24 -07:00
|
|
|
%target_nomsu = (%tree.target decompiled inline)
|
2018-09-21 00:30:28 -07:00
|
|
|
if %tree.target.type is:
|
2018-10-31 15:05:17 -07:00
|
|
|
"Action" "Block":
|
2018-09-21 00:30:28 -07:00
|
|
|
%target_nomsu::parenthesize
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu::add [%target_nomsu, "::"]
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
for %bit in %tree at %i:
|
|
|
|
if (%bit is text):
|
|
|
|
unless (..)
|
|
|
|
any of [..]
|
2018-10-31 15:05:17 -07:00
|
|
|
%i == 1, %tree.(%i - 1) isn't text, (%bit is a nomsu operator) == (%tree.(%i - 1) is a nomsu operator)
|
2018-09-21 00:30:28 -07:00
|
|
|
..: %nomsu::add " "
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu::add %bit
|
|
|
|
..else:
|
2018-10-03 16:26:24 -07:00
|
|
|
%arg_nomsu = (%bit decompiled inline)
|
2018-09-21 00:30:28 -07:00
|
|
|
unless ((%i == (size of %tree)) and (%bit.type == "Block")):
|
|
|
|
%nomsu::add " "
|
|
|
|
if ((%bit.type == "Action") or (%bit.type == "Block")):
|
|
|
|
%arg_nomsu::parenthesize
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu::add %arg_nomsu
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
return %nomsu
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
"EscapedNomsu":
|
2018-10-03 16:26:24 -07:00
|
|
|
%inner_nomsu = (%tree.1 decompiled inline)
|
2018-09-21 00:30:28 -07:00
|
|
|
unless (..)
|
|
|
|
any of [..]
|
2018-10-31 15:05:17 -07:00
|
|
|
%tree.(1).type == "List", %tree.(1).type == "Dict", %tree.(1).type == "Var"
|
|
|
|
..:
|
|
|
|
%inner_nomsu::parenthesize
|
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu = (Nomsu Code from %tree ["\\", %inner_nomsu])
|
|
|
|
return %nomsu
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
"Block":
|
|
|
|
%nomsu = (Nomsu Code from %tree [":"])
|
2018-09-26 13:05:28 -07:00
|
|
|
for %line in %tree at %i:
|
2018-10-31 15:05:17 -07:00
|
|
|
%nomsu::add [" " if (%i == 1) else "; ", %line decompiled inline]
|
2018-09-21 00:30:28 -07:00
|
|
|
return %nomsu
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
"Text":
|
2018-10-29 13:00:08 -07:00
|
|
|
%nomsu = (Nomsu Code from %tree [])
|
2018-09-21 00:30:28 -07:00
|
|
|
for %text in recursive %tree:
|
|
|
|
for %bit in %text at %i:
|
2018-10-31 15:05:17 -07:00
|
|
|
if (%bit is text): %nomsu::add %bit
|
2018-09-26 14:00:05 -07:00
|
|
|
..else:
|
2018-09-21 00:30:28 -07:00
|
|
|
if %bit.type is:
|
|
|
|
"Text":
|
|
|
|
recurse %text on %bit
|
|
|
|
"Var":
|
2018-10-03 16:26:24 -07:00
|
|
|
%interp_nomsu = (%bit decompiled inline)
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
# Make sure "...\(%x)y..." isn't confused with "...\(%xy)..."
|
|
|
|
# TODO: make this more robust against "...\%x\("y").."
|
|
|
|
if (..)
|
|
|
|
(%tree.(%i + 1) is text) and (..)
|
|
|
|
not (%tree.(%i + 1)::matches "^[ \n\t,.:;#(){}%[%]]")
|
|
|
|
..: %interp_nomsu::parenthesize
|
|
|
|
%nomsu::add ["\\", %interp_nomsu]
|
2018-10-31 15:05:17 -07:00
|
|
|
|
|
|
|
"List" "Dict":
|
2018-10-03 16:26:24 -07:00
|
|
|
%nomsu::add ["\\", %bit decompiled inline]
|
2018-09-21 00:30:28 -07:00
|
|
|
else:
|
2018-10-03 16:26:24 -07:00
|
|
|
%nomsu::add ["\\(", %bit decompiled inline, ")"]
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
return (Nomsu Code from %tree ["\"", %nomsu, "\""])
|
2018-10-31 15:05:17 -07:00
|
|
|
|
|
|
|
"List" "Dict":
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu = (Nomsu Code from %tree ["[" if (%tree.type == "List") else "{"])
|
|
|
|
for %item in %tree at %i:
|
|
|
|
if (%i > 1): %nomsu::add ", "
|
2018-10-03 16:26:24 -07:00
|
|
|
%nomsu::add (%item decompiled inline)
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu::add ("]" if (%tree.type == "List") else "}")
|
|
|
|
return %nomsu
|
|
|
|
|
|
|
|
"DictEntry":
|
|
|
|
set {%key:%tree.1, %value:%tree.2}
|
2018-10-31 15:05:17 -07:00
|
|
|
if (..)
|
|
|
|
all of [%key.type == "Text", (size of %key) == 1, %key.1 is a nomsu identifier]
|
|
|
|
..:
|
2018-10-29 13:00:08 -07:00
|
|
|
%nomsu = (Nomsu Code from %key [%key.1])
|
2018-09-21 00:30:28 -07:00
|
|
|
..else:
|
2018-10-03 16:26:24 -07:00
|
|
|
%nomsu = (%key decompiled inline)
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
if (%key.type == "Action"):
|
|
|
|
%nomsu::parenthesize
|
|
|
|
if %value:
|
2018-10-29 13:00:08 -07:00
|
|
|
%nomsu::add ":"
|
2018-10-03 16:26:24 -07:00
|
|
|
%nomsu::add (%value decompiled inline)
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
return %nomsu
|
|
|
|
|
|
|
|
"IndexChain":
|
|
|
|
%nomsu = (Nomsu Code from %tree)
|
|
|
|
for %bit in %tree at %i:
|
2018-09-26 13:05:28 -07:00
|
|
|
if (%i > 1): %nomsu::add "."
|
2018-09-21 00:30:28 -07:00
|
|
|
if (..)
|
|
|
|
all of [..]
|
2018-10-31 15:05:17 -07:00
|
|
|
%i > 1, %bit.type == "Text", (size of %bit) == 1, %bit.1 is text, %bit.1 is a nomsu identifier
|
|
|
|
..: %nomsu::add %bit.1
|
2018-09-21 00:30:28 -07:00
|
|
|
..else:
|
2018-10-03 16:26:24 -07:00
|
|
|
%bit_nomsu = (%bit decompiled inline)
|
2018-09-21 00:30:28 -07:00
|
|
|
if (..)
|
|
|
|
any of [..]
|
2018-10-31 15:05:17 -07:00
|
|
|
%bit.type == "Action", %bit.type == "Block", %bit.type == "IndexChain"
|
2018-09-21 00:30:28 -07:00
|
|
|
(%bit.type == "Number") and (%i < (size of %tree))
|
2018-10-31 15:05:17 -07:00
|
|
|
..:
|
|
|
|
%bit_nomsu::parenthesize
|
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu::add %bit_nomsu
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
return %nomsu
|
|
|
|
|
|
|
|
"Number":
|
|
|
|
return (Nomsu Code from %tree [(%tree.1 as hex) if %tree.hex else "\(%tree.1)"])
|
|
|
|
"Var":
|
|
|
|
return (Nomsu Code from %tree ["%\(%tree.1)"])
|
2018-10-31 15:05:17 -07:00
|
|
|
"Comment": return (nil)
|
2018-09-21 00:30:28 -07:00
|
|
|
"FileChunks":
|
|
|
|
barf "Can't inline a FileChunks"
|
|
|
|
"Error":
|
|
|
|
barf "Can't compile errors"
|
|
|
|
else:
|
|
|
|
barf "Unknown type: \(%tree.type)"
|
|
|
|
|
|
|
|
%MAX_LINE = 90
|
2018-10-31 15:05:17 -07:00
|
|
|
externally (%tree decompiled) means:
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu = (Nomsu Code from %tree)
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
# For concision:
|
2018-10-31 15:05:17 -07:00
|
|
|
(recurse on %t) means:
|
2018-09-21 00:30:28 -07:00
|
|
|
%space = (%MAX_LINE - (%nomsu::trailing line length))
|
2018-10-31 15:05:17 -07:00
|
|
|
if (%space <= 0):
|
|
|
|
go to (Use Indented)
|
2018-09-21 00:30:28 -07:00
|
|
|
for %subtree in recursive %tree:
|
|
|
|
if %subtree.type is:
|
|
|
|
"Block":
|
|
|
|
if ((size of %subtree) > 1):
|
|
|
|
go to (Use Indented)
|
2018-10-03 16:26:24 -07:00
|
|
|
if ((size of "\(%subtree decompiled inline)") > 20):
|
2018-09-21 00:30:28 -07:00
|
|
|
go to (Use Indented)
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
for %k = %v in %subtree:
|
|
|
|
if (%v is a "Syntax Tree"):
|
|
|
|
recurse %subtree on %v
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-10-03 16:26:24 -07:00
|
|
|
%inline_nomsu = (%t decompiled inline)
|
2018-09-21 00:30:28 -07:00
|
|
|
if (%inline_nomsu and ((size of "\%inline_nomsu") <= %space)):
|
|
|
|
return %inline_nomsu
|
|
|
|
=== (Use Indented) ===
|
2018-10-03 16:26:24 -07:00
|
|
|
%indented = (%t decompiled)
|
2018-09-21 00:30:28 -07:00
|
|
|
if (%t.type == "Action"):
|
2018-10-31 15:05:17 -07:00
|
|
|
%indented = (..)
|
|
|
|
Nomsu Code from %t [..]
|
|
|
|
"(..)\n ", %indented
|
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
return %indented
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
if %tree.type is:
|
|
|
|
"FileChunks":
|
2018-10-31 15:05:17 -07:00
|
|
|
(%1 and %2 should clump) means:
|
2018-09-21 00:30:28 -07:00
|
|
|
if ((%1.type == "Action") and (%2.type == "Action")):
|
2018-10-31 15:05:17 -07:00
|
|
|
if (%1.stub == "use 1"):
|
|
|
|
return (%2.stub == "use 1")
|
2018-09-21 00:30:28 -07:00
|
|
|
if (%1.stub == "test 1"): return (yes)
|
|
|
|
if (%2.stub == "test 1"): return (no)
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
return (not ((recurse on %1)::is multi-line))
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
for %chunk in %tree at %chunk_no:
|
|
|
|
if (%chunk_no > 1):
|
|
|
|
%nomsu::add "\n\n\("~"::* 80)\n\n"
|
|
|
|
if (%chunk.type == "Block"):
|
|
|
|
for %line in %chunk at %line_no:
|
|
|
|
if (%line_no > 1):
|
2018-10-31 15:05:17 -07:00
|
|
|
if (%chunk.(%line_no - 1) and %line should clump): %nomsu::add "\n"
|
|
|
|
..else: %nomsu::add "\n\n"
|
|
|
|
|
2018-10-03 16:26:24 -07:00
|
|
|
%nomsu::add (%line decompiled)
|
2018-09-21 00:30:28 -07:00
|
|
|
..else:
|
2018-10-03 16:26:24 -07:00
|
|
|
%nomsu::add (%chunk decompiled)
|
2018-10-31 15:05:17 -07:00
|
|
|
|
|
|
|
unless ("\%nomsu"::matches "\n$"): %nomsu::add "\n"
|
2018-09-21 00:30:28 -07:00
|
|
|
return %nomsu
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
"Action":
|
|
|
|
%pos = %tree.source.start
|
|
|
|
%next_space = ""
|
|
|
|
if %tree.target:
|
|
|
|
%target_nomsu = (recurse on %tree.target)
|
|
|
|
if ((%tree.target.type == "Action") and (%target_nomsu::is one line)):
|
|
|
|
%target_nomsu::parenthesize
|
|
|
|
%nomsu::add %target_nomsu
|
|
|
|
%pos = %tree.target.source.stop
|
|
|
|
%next_space = ("\n..::" if (%target_nomsu::is multi-line) else "::")
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
for %bit in %tree at %i:
|
|
|
|
if ((%next_space == " ") and ((%nomsu::trailing line length) > %MAX_LINE)):
|
|
|
|
%next_space = " \\\n"
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu::add %next_space
|
|
|
|
if (%bit is text):
|
|
|
|
unless (..)
|
|
|
|
all of [..]
|
2018-10-31 15:05:17 -07:00
|
|
|
%tree.(%i - 1) is text, (%tree.(%i - 1) is a nomsu operator) != (%bit is a nomsu operator)
|
|
|
|
..:
|
|
|
|
%nomsu::add %next_space
|
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu::add %bit
|
|
|
|
%next_space = " "
|
|
|
|
do next %bit
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
%bit_nomsu = (recurse on %bit)
|
2018-10-31 15:05:17 -07:00
|
|
|
if (%bit.type == "Comment"): %next_space = "\n"
|
2018-09-21 00:30:28 -07:00
|
|
|
..else:
|
|
|
|
%next_space = (" " if (%bit_nomsu::is one line) else "\n..")
|
|
|
|
if (%bit.type == "Action"):
|
|
|
|
%bit_nomsu::parenthesize
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
return %nomsu
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
"EscapedNomsu":
|
|
|
|
%nomsu::add "\\"
|
|
|
|
%val_nomsu = (recurse on %tree.1)
|
|
|
|
if ((%tree.(1).type == "Action") and (%val_nomsu::is one line)):
|
|
|
|
%val_nomsu::parenthesize
|
|
|
|
%nomsu::add %val_nomsu
|
|
|
|
return %nomsu
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
"Block":
|
|
|
|
for %line in %tree at %i:
|
2018-10-31 15:05:17 -07:00
|
|
|
if ((%i > 1) and (%line.type == "Comment")): %nomsu::add "\n"
|
2018-09-21 00:30:28 -07:00
|
|
|
%line_nomsu = (recurse on %line)
|
|
|
|
%nomsu::add
|
|
|
|
if (%i < (size of %tree)):
|
2018-10-31 15:05:17 -07:00
|
|
|
if ((%line_nomsu::number of lines) > 2): %nomsu::add "\n\n"
|
|
|
|
..else: %nomsu::add "\n"
|
|
|
|
|
|
|
|
return (..)
|
|
|
|
Nomsu Code from %tree [..]
|
|
|
|
":\n ", %nomsu
|
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
"Text":
|
|
|
|
# Multi-line text has more generous wrap margins
|
|
|
|
%max_line = ((1.5 * %MAX_LINE) rounded down)
|
|
|
|
%nomsu = (Nomsu Code from %tree)
|
2018-10-31 15:05:17 -07:00
|
|
|
(add text from %tree) means:
|
2018-09-21 00:30:28 -07:00
|
|
|
for %bit in %tree at %i:
|
|
|
|
if (%bit is text):
|
|
|
|
# TODO: escape properly?
|
|
|
|
%bit = (escape text %bit)
|
|
|
|
for %line in (%bit::lines) at %j:
|
|
|
|
if:
|
2018-09-26 13:05:28 -07:00
|
|
|
(%j > 1): %nomsu::add "\n"
|
2018-09-21 00:30:28 -07:00
|
|
|
(((size of %line) > 10) and ((%nomsu::trailing line length) > %max_line)):
|
|
|
|
%nomsu::add "\\\n.."
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-28 22:15:06 -07:00
|
|
|
repeat while ((size of %line) > 0):
|
2018-09-21 00:30:28 -07:00
|
|
|
%space = (%max_line - (%nomsu::trailing line length))
|
|
|
|
%split = (%line::position of "[%p%s]" after %space)
|
|
|
|
if ((not %split) or (%split > %space + 10)):
|
|
|
|
%split = (%space + 10)
|
|
|
|
if ((%line - %split) < 10):
|
|
|
|
%split = (size of %line)
|
|
|
|
set {%bite:%line.[1, %split], %line:%line.[%split + 1, -1]}
|
|
|
|
%nomsu::add %bite
|
|
|
|
if ((size of %line) > 0):
|
|
|
|
%nomsu::add "\\\n.."
|
|
|
|
if (%bit.type == "Text"):
|
|
|
|
add text from %bit
|
|
|
|
..else:
|
|
|
|
%nomsu::add "\\"
|
|
|
|
%interp_nomsu = (recurse on %bit)
|
|
|
|
unless (%interp_nomsu::is multi-line):
|
|
|
|
if %bit.type is:
|
|
|
|
"Var":
|
|
|
|
if ((%tree.(%i+1) is text) and (not (%tree.(%i+1)::matches "^[ \n\t,.:#(){}[%]]"))):
|
|
|
|
%interp_nomsu::parenthesize
|
2018-10-31 15:05:17 -07:00
|
|
|
|
|
|
|
"List" "Dict":
|
2018-09-21 00:30:28 -07:00
|
|
|
%interp_nomsu::parenthesize
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu::add %interp_nomsu
|
2018-10-31 15:05:17 -07:00
|
|
|
if (%interp_nomsu::is multi-line): %nomsu::add "\n.."
|
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
add text from %tree
|
2018-10-31 15:05:17 -07:00
|
|
|
return (..)
|
|
|
|
Nomsu Code from %tree [..]
|
|
|
|
"\"\\\n ..", %nomsu, "\""
|
|
|
|
|
|
|
|
"List" "Dict":
|
2018-09-21 00:30:28 -07:00
|
|
|
if ((size of %tree) == 0):
|
|
|
|
%nomsu::add ("[]" if (%tree.type == "List") else "{}")
|
|
|
|
return %nomsu
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
for %item in %tree at %i:
|
2018-10-03 16:26:24 -07:00
|
|
|
%item_nomsu = (%item decompiled inline)
|
2018-09-21 00:30:28 -07:00
|
|
|
if ((not %item_nomsu) or ((size of "\%item_nomsu") > %MAX_LINE)):
|
|
|
|
%item_nomsu = (recurse on %item_nomsu)
|
|
|
|
%nomsu::add %item_nomsu
|
|
|
|
if (%i < (size of %tree)):
|
2018-09-26 13:05:28 -07:00
|
|
|
if any of [..]
|
2018-10-31 15:05:17 -07:00
|
|
|
%item_nomsu::is multi-line, ((%nomsu::trailing line length) + (size of "\%item_nomsu")) >= %MAX_LINE
|
2018-09-21 00:30:28 -07:00
|
|
|
..: %nomsu::add "\n"
|
|
|
|
..else: %nomsu::add ", "
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
return (..)
|
|
|
|
Nomsu Code from %tree [..]
|
2018-09-26 13:05:28 -07:00
|
|
|
"[..]\n " if (%tree.type == "List") else "{..}\n "
|
2018-09-21 00:30:28 -07:00
|
|
|
%nomsu
|
|
|
|
|
|
|
|
"DictEntry":
|
|
|
|
set {%key:%tree.1, %value:%tree.2}
|
2018-10-31 15:05:17 -07:00
|
|
|
if (..)
|
|
|
|
all of [%key.type == "Text", (size of %key) == 1, %key.1 is a nomsu identifier]
|
|
|
|
..: %nomsu::add %key.1
|
2018-09-21 00:30:28 -07:00
|
|
|
..else:
|
2018-10-03 16:26:24 -07:00
|
|
|
%nomsu::add (%key decompiled inline)
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
if ((%key.type == "Action") or (%key.type == "Block")):
|
|
|
|
%nomsu::parenthesize
|
|
|
|
%nomsu::add [": ", recurse on %value]
|
|
|
|
return %nomsu
|
|
|
|
|
|
|
|
"Comment":
|
|
|
|
%nomsu::add ["#", %tree.1::with "\n" -> "\n "]
|
|
|
|
return %nomsu
|
|
|
|
|
2018-10-31 15:05:17 -07:00
|
|
|
"IndexChain" "Number" "Var":
|
2018-10-03 16:26:24 -07:00
|
|
|
return (%tree decompiled inline)
|
2018-09-21 00:30:28 -07:00
|
|
|
"Error":
|
|
|
|
barf "Cannot decompile an error"
|
|
|
|
else:
|
|
|
|
barf "Unknown type: \(%tree.type)"
|