Switching more verbose ("Action" tree with "foo" $x) syntax to `(foo

`$x) when possible
This commit is contained in:
Bruce Hill 2019-03-20 16:16:41 -07:00
parent e665d9725c
commit 938adbfe44
12 changed files with 49 additions and 53 deletions

View File

@ -30,7 +30,7 @@ upgrade $tree to "2.4" as:
$new_lines, add $line $new_lines, add $line
($line.stub == "* else"): ($line.stub == "* else"):
$new_lines, add ("Action" tree with "else" $line.3) $new_lines, add (else `$line.3)
else: else:
$conditions, add $line.2 $conditions, add $line.2
@ -44,9 +44,7 @@ upgrade $tree to "2.4" as:
") ")
$conditions = [] $conditions = []
return return `(when `("Block" tree from $tree.2.source with (unpack $new_lines)))
"Action" tree with "when"
"Block" tree from $tree.2.source with (unpack $new_lines)
"if 1 is ?" "if 1 = ?": "if 1 is ?" "if 1 = ?":
$values = [] $values = []
@ -66,7 +64,7 @@ upgrade $tree to "2.4" as:
$new_lines, add $line $new_lines, add $line
($line.stub == "* else"): ($line.stub == "* else"):
$new_lines, add ("Action" tree with "else" $line.3) $new_lines, add (else `$line.3)
else: else:
$values, add $line.2 $values, add $line.2
@ -79,5 +77,7 @@ upgrade $tree to "2.4" as:
$values = [] $values = []
return return
"Action" tree with "if" ($tree.2 upgraded) "is" `(
"Block" tree from $tree.5.source with (unpack $new_lines) if `($tree.2 upgraded) is
`("Block" tree from $tree.5.source with (unpack $new_lines))
)

View File

@ -17,8 +17,7 @@ upgrade $tree to "2" as:
unless ($false_body is "Block" syntax tree): unless ($false_body is "Block" syntax tree):
$false_body = (=lua "Block(\$false_body.source, \$false_body)") $false_body = (=lua "Block(\$false_body.source, \$false_body)")
return return `(if `($tree.2 upgraded) `$true_body else `$false_body)
"Action" tree with "if" ($tree.2 upgraded) $true_body "else" $false_body
$need_blocks = [ $need_blocks = [
"if", "unless", "for 1 in", "for 1 = 2 in", "repeat while 1", "repeat 1 times" "if", "unless", "for 1 in", "for 1 = 2 in", "repeat while 1", "repeat 1 times"

View File

@ -13,12 +13,12 @@ upgrade action "local action" to "4.8.10" via
if $spec.type is: if $spec.type is:
"List": "List":
if (#$spec == 1): if (#$spec == 1):
return ("Action" tree with $spec.1 "means" $body) return `(`$spec.1 means `$body)
..else: ..else:
return ("Action" tree with $spec "all" "mean" $body) return `(`$spec all mean `$body)
else: else:
return ("Action" tree with $spec "means" $body) return `(`$spec means `$body)
upgrade action "action" to "4.8.10" via upgrade action "action" to "4.8.10" via
for ($tree $end_version): for ($tree $end_version):
@ -28,14 +28,14 @@ upgrade action "action" to "4.8.10" via
if $spec.type is: if $spec.type is:
"List": "List":
if (#$spec == 1): if (#$spec == 1):
return ("Action" tree with "externally" $spec.1 "means" $body) return `(externally `$spec.1 means `$body)
..else: ..else:
return ("Action" tree with "externally" $spec "all" "mean" $body) return `(externally `$spec all mean `$body)
else: else:
return ("Action" tree with "externally" $spec "means" $body) return `(externally `$spec means `$body)
..else: ..else:
return ("Action" tree with $spec "'" "s" "meaning") return `((`$spec)'s meaning)
upgrade action "compile 1 to" to "4.8.10" via upgrade action "compile 1 to" to "4.8.10" via
for ($tree $end_version): for ($tree $end_version):
@ -44,12 +44,12 @@ upgrade action "compile 1 to" to "4.8.10" via
if $spec.type is: if $spec.type is:
"List": "List":
if (#$spec == 1): if (#$spec == 1):
return ("Action" tree with $spec.1 "compiles" "to" $body) return `(`$spec.1 compiles to `$body)
..else: ..else:
return ("Action" tree with $spec "all" "compile" "to" $body) return `(`$spec all compile to `$body)
else: else:
return ("Action" tree with $spec "compiles" "to" $body) return `(`$spec compiles to `$body)
upgrade action "parse 1 as" to "4.8.10" via upgrade action "parse 1 as" to "4.8.10" via
for ($tree $end_version): for ($tree $end_version):
@ -58,12 +58,12 @@ upgrade action "parse 1 as" to "4.8.10" via
if $spec.type is: if $spec.type is:
"List": "List":
if (#$spec == 1): if (#$spec == 1):
return ("Action" tree with $spec.1 "parses" "as" $body) return `(`$spec.1 parses as `$body)
..else: ..else:
return ("Action" tree with $spec "all" "parse" "as" $body) return `(`$spec all parse as `$body)
else: else:
return ("Action" tree with $spec "parse" "as" $body) return `(`$spec parse as `$body)
upgrade action (compile as $) to "4.8.10" as (what $ compiles to) upgrade action (compile as $) to "4.8.10" as (what $ compiles to)
upgrade action (remove action $) to "4.8.10" as (($'s meaning) = (nil)) upgrade action (remove action $) to "4.8.10" as (($'s meaning) = (nil))

View File

@ -10,4 +10,4 @@ upgrade action "if" to "4.9" via
for ($tree $end_version): for ($tree $end_version):
if (#$tree > 2): if (#$tree > 2):
return $tree return $tree
return ("Action" tree with "when" $tree.2) return `(when `$tree.2)

View File

@ -17,6 +17,6 @@ upgrade action "with" to "5.13" via
when: when:
(($a.type == "DictEntry") and (#$a == 1)): $a = $a.1 (($a.type == "DictEntry") and (#$a == 1)): $a = $a.1
(all of [$a.type == "DictEntry", #$a == 2]): (all of [$a.type == "DictEntry", #$a == 2]):
$a = ("Action" tree with $a.1 "=" $a.2) $a = `(`$a.1 = `$a.2)
$new_assignments.$i = $a $new_assignments.$i = $a
return ("Action" tree with "with" $new_assignments $body) return `(with `$new_assignments `$body)

View File

@ -28,7 +28,7 @@ upgrade action (assume $assumption or barf $err) to "6.14" as
unless $assumption: fail $err unless $assumption: fail $err
upgrade action (barf $msg) to "6.14" as (fail $msg) upgrade action (barf $msg) to "6.14" as (fail $msg)
upgrade action ("Action" tree with 1 "'" "s" "meaning").stub to "6.14" via upgrade action (`(1's meaning)).stub to "6.14" via
$tree -> ("Var" tree from $tree.source with $tree.1) $tree -> ("Var" tree from $tree.source with $tree.1)
upgrade action (log base $b of $n) to "6.14" as (log $n base $b) upgrade action (log base $b of $n) to "6.14" as (log $n base $b)
upgrade action "use" to "6.14" via upgrade action "use" to "6.14" via
@ -36,4 +36,4 @@ upgrade action "use" to "6.14" via
$path = $tree.2.1 $path = $tree.2.1
$path = ($path, with "%.nom$" -> "") $path = ($path, with "%.nom$" -> "")
$path = ($path, with "^lib/" -> "") $path = ($path, with "^lib/" -> "")
return ("Action" tree with "use" ("Text" tree from $tree.2.source with $path)) return `(use `("Text" tree from $tree.2.source with $path))

View File

@ -22,7 +22,7 @@ external:
(upgrade action $actions to $version as $body) compiles to: (upgrade action $actions to $version as $body) compiles to:
if ($actions is "Action" syntax tree): if ($actions is "Action" syntax tree):
$actions = ("List" tree with $actions) $actions = `[`$actions]
$lua = (Lua "") $lua = (Lua "")
for $action in $actions: for $action in $actions:
$replacements = {} $replacements = {}

View File

@ -232,18 +232,18 @@ test:
if ($body, contains `(do next)): if ($body, contains `(do next)):
$lua, add "\n ::continue::" $lua, add "\n ::continue::"
if ($key and ($body, contains ("Action" tree with "do" "next" $key))): if ($key and ($body, contains `(do next `$key))):
$lua, add "\n " (("Action" tree with "---" "next" $key "---") as lua) $lua, add "\n " (`(---next `$key ---) as lua)
if ($body, contains ("Action" tree with "do" "next" $value)): if ($body, contains `(do next `$value)):
$lua, add "\n " (("Action" tree with "---" "next" $value "---") as lua) $lua, add "\n " (`(---next `$value ---) as lua)
$lua, add "\n end" $lua, add "\n end"
if ($key and ($body, contains ("Action" tree with "stop" $key))): if ($key and ($body, contains `(stop `$key))):
$lua, add "\n " (("Action" tree with "---" "stop" $key "---") as lua) $lua, add "\n " (`(---stop `$key ---) as lua)
if ($body, contains ("Action" tree with "stop" $value)): if ($body, contains `(stop `$value)):
$lua, add "\n " (("Action" tree with "---" "stop" $value "---") as lua) $lua, add "\n " (`(---stop `$value ---) as lua)
$lua, add "\nend -- for-loop" $lua, add "\nend -- for-loop"
$lua, remove free vars $lua, remove free vars
@ -445,7 +445,7 @@ test:
assume ((result of: return 99) == 99) assume ((result of: return 99) == 99)
### Inline thunk: ### Inline thunk:
(result of $body) compiles to "\(("Action" tree with "->" $body) as lua)()" (result of $body) compiles to "\(`(-> `$body) as lua)()"
test: test:
$t = [1, [2, [[3], 4], 5, [[[6]]]]] $t = [1, [2, [[3], 4], 5, [[[6]]]]]
$flat = [] $flat = []
@ -474,11 +474,11 @@ test:
if ($body, contains `(do next)): if ($body, contains `(do next)):
$lua, add "\n ::continue::" $lua, add "\n ::continue::"
if ($body, contains ("Action" tree with "do" "next" $var)): if ($body, contains `(do next `$var)):
$lua, add "\n \(("Action" tree with "---" "next" $var "---") as lua)" $lua, add "\n \(`(---next `$var ---) as lua)"
$lua, add "\n end -- Recursive loop" $lua, add "\n end -- Recursive loop"
if ($body, contains ("Action" tree with "stop" $var)): if ($body, contains `(stop `$var)):
$lua, add "\n \(("Action" tree with "---" "stop" $var "---") as lua)" $lua, add "\n \(`(---stop `$var ---) as lua)"
$lua, add "\nend -- Recursive scope" $lua, add "\nend -- Recursive scope"
return $lua return $lua

View File

@ -28,8 +28,5 @@ external:
"Command failure: Command `\($cmd)` was terminated by signal \$return" "Command failure: Command `\($cmd)` was terminated by signal \$return"
### Attach callsite information for better error reporting ### Attach callsite information for better error reporting
(=sh $cmd) compiles to (=sh $cmd) compiles to `(at `("Text" tree with "\($cmd.source)") =sh `$cmd)
("Action" tree with "at" ("Text" tree with "\($cmd.source)") "=" "sh" $cmd) as lua (sh> $cmd) compiles to `(at `("Text" tree with "\($cmd.source)") sh> `$cmd)
(sh> $cmd) compiles to
("Action" tree with "at" ("Text" tree with "\($cmd.source)") "sh" ">" $cmd) as lua

View File

@ -43,7 +43,7 @@ command line program with $args:
for $ in (1 to #$patt): for $ in (1 to #$patt):
if ($patt.$ is syntax tree): if ($patt.$ is syntax tree):
if ($patt.$ == ("Var" tree with "multi_wildcard")): return (yes) if ($patt.$ == `$multi_wildcard): return (yes)
unless ($tree.$ matches $patt.$): return (no) unless ($tree.$ matches $patt.$): return (no)
..else: ..else:
unless ($tree.$ == $patt.$): return (no) unless ($tree.$ == $patt.$): return (no)

View File

@ -15,10 +15,10 @@ use "shell"
") ")
[<your code here>, ???] all compile to [<your code here>, ???] all compile to
( `(
"Action" tree with "at" ("Text" tree with "\((this tree).source)") "fail" at `("Text" tree with "\((this tree).source)") fail
`"Incomplete code: This needs to be filled in." `"Incomplete code: This needs to be filled in."
) as lua )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~