Added lisp-y output
This commit is contained in:
parent
12db69cdd6
commit
606fd09000
@ -42,15 +42,29 @@ use "commandline"
|
|||||||
"a Syntax Tree":
|
"a Syntax Tree":
|
||||||
$body = ([: for $bit in $: add ($bit as xml)], joined with " ")
|
$body = ([: for $bit in $: add ($bit as xml)], joined with " ")
|
||||||
if ($.type == "Action"):
|
if ($.type == "Action"):
|
||||||
return ("
|
return "<Action name=\"\(($, get stub) as xml)\">\$body</Action>"
|
||||||
<Action name="\(($, get stub) as xml)">\$body</Action>
|
|
||||||
")
|
|
||||||
..else:
|
..else:
|
||||||
return ("
|
return "<\($.type)>\$body</\($.type)>"
|
||||||
<\($.type)>\$body</\($.type)>
|
|
||||||
")
|
|
||||||
"Text":
|
"Text":
|
||||||
return ($, with "&" -> "&", with "\"" -> """, with "'" -> "'", with "<" -> "<", with ">" -> ">")
|
return
|
||||||
|
(
|
||||||
|
($, with "&" -> "&", with "\"" -> """, with "'" -> "'"),
|
||||||
|
with "<" -> "<"
|
||||||
|
), with ">" -> ">"
|
||||||
|
|
||||||
|
else:
|
||||||
|
return "\$"
|
||||||
|
|
||||||
|
($ as lisp) means:
|
||||||
|
when (type of $) is:
|
||||||
|
"a Syntax Tree":
|
||||||
|
$body = ([$.type, : for $bit in $: add ($bit as lisp)], joined with " ")
|
||||||
|
return "(\$body)"
|
||||||
|
|
||||||
|
"Text":
|
||||||
|
return "\"\($, with "\\" -> "\\\\", with "\"" -> "\\\"", with "\n" -> "\\n")\""
|
||||||
|
|
||||||
else:
|
else:
|
||||||
return "\$"
|
return "\$"
|
||||||
|
|
||||||
@ -59,9 +73,14 @@ command line program with $args:
|
|||||||
$file = (read file $filename)
|
$file = (read file $filename)
|
||||||
unless $file:
|
unless $file:
|
||||||
fail "File does not exist: \$filename"
|
fail "File does not exist: \$filename"
|
||||||
$nomsu = (NomsuCode from (Source $filename 1 (size of $file)) $file)
|
$nomsu = (NomsuCode from (Source $filename 1 (#$file)) $file)
|
||||||
$tree = ($nomsu parsed)
|
$tree = ($nomsu parsed)
|
||||||
if ($args.x or $args.xml):
|
when:
|
||||||
|
($args.x or $args.xml):
|
||||||
say ($tree as xml)
|
say ($tree as xml)
|
||||||
..else:
|
|
||||||
|
($args.l or $args.lisp):
|
||||||
|
say ($tree as lisp)
|
||||||
|
|
||||||
|
else:
|
||||||
print tree $tree at indent ""
|
print tree $tree at indent ""
|
Loading…
Reference in New Issue
Block a user