Autoformat (mostly just to do with the new

blank-line-after-end-of-multi-indent-block rule
This commit is contained in:
Bruce Hill 2019-03-27 15:22:46 -07:00
parent bb07e67241
commit a1849da175
50 changed files with 60 additions and 69 deletions

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### How do I... ### How do I...
### Write a comment? Put a # and go till the end of the line ### Write a comment? Put a # and go till the end of the line
### How do I write a multi-line comment? ### How do I write a multi-line comment?
@ -199,6 +198,7 @@ say both "Hello" and also "world!"
$f2 = $tmp $f2 = $tmp
if ($f2 > $n): if ($f2 > $n):
return $f2 return $f2
say (first fibonacci above 10) say (first fibonacci above 10)
### Actions can have aliases, which may or may not have the arguments in different order ### Actions can have aliases, which may or may not have the arguments in different order
@ -290,6 +290,7 @@ say "The square root of 2 is \(square root of 2)"
") ")
..else: ..else:
return (Lua "-- (debug code removed for production)") return (Lua "-- (debug code removed for production)")
$DEBUG_ENABLED = (yes) $DEBUG_ENABLED = (yes)
### Constants can be defined as macros ### Constants can be defined as macros
@ -318,6 +319,7 @@ debug only:
$key = ($key_fn $item) $key = ($key_fn $item)
if (($best == (nil)) or ($key > $best_key)): if (($best == (nil)) or ($key > $best_key)):
[$best, $best_key] = [$item, $key] [$best, $best_key] = [$item, $key]
return $best return $best
### Function literals look like: $x -> ($x * $x) ### Function literals look like: $x -> ($x * $x)
@ -338,6 +340,7 @@ say (best of [2, -3, 4, -8] according to $($ squared))
$key = $key_expr $key = $key_expr
if (($best == (nil)) or ($key > $best_key)): if (($best == (nil)) or ($key > $best_key)):
[$best, $best_key] = [$item, $key] [$best, $best_key] = [$item, $key]
return $best return $best
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -352,4 +355,5 @@ say
$key = ($x * $x) $key = ($x * $x)
if (($best == (nil)) or ($key > $best_key)): if (($best == (nil)) or ($key > $best_key)):
[$best, $best_key] = [$x, $key] [$best, $best_key] = [$x, $key]
return $best return $best

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines actions for encoding/decoding base 64, as specified in: This file defines actions for encoding/decoding base 64, as specified in:
https://tools.ietf.org/html/rfc4648 https://tools.ietf.org/html/rfc4648
@ -37,6 +36,7 @@ external:
$chars, add $b64_chars.((($bytes.1 & 3) << 4) + 1) $chars, add $b64_chars.((($bytes.1 & 3) << 4) + 1)
$chars, add "=" $chars, add "="
$chars, add "=" $chars, add "="
return ($chars, joined) return ($chars, joined)
(chr $) means (=lua "string.char(\$)") (chr $) means (=lua "string.char(\$)")
[decode base64 $str, $str base64 decoded, base64 decode $str] all mean: [decode base64 $str, $str base64 decoded, base64 decode $str] all mean:

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
A library defining some command line program functionality A library defining some command line program functionality

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <2.3 to Nomsu 2.3 This file defines upgrades from Nomsu <2.3 to Nomsu 2.3

View File

@ -14,9 +14,7 @@ upgrade $tree to "2.4" as:
return $tree return $tree
$conditions = [] $conditions = []
$new_lines = [] $new_lines = []
$body = $body = ($tree.2 if ($tree.2 is "Block" syntax tree) else [$tree.2])
$tree.2 if ($tree.2 is "Block" syntax tree) else [$tree.2]
for $line in $body: for $line in $body:
when: when:
(not ($line is "Action" syntax tree)): (not ($line is "Action" syntax tree)):
@ -48,9 +46,7 @@ upgrade $tree to "2.4" as:
"if 1 is ?" "if 1 = ?": "if 1 is ?" "if 1 = ?":
$values = [] $values = []
$new_lines = [] $new_lines = []
$body = $body = ($tree.5 if ($tree.5 is "Block" syntax tree) else [$tree.5])
$tree.5 if ($tree.5 is "Block" syntax tree) else [$tree.5]
for $line in $body: for $line in $body:
when: when:
(not ($line is "Action" syntax tree)): (not ($line is "Action" syntax tree)):
@ -76,7 +72,4 @@ upgrade $tree to "2.4" as:
$values = [] $values = []
return return
\( \(if \$tree.2 is \("Block" tree from $tree.5.source with (unpack $new_lines)))
if \($tree.2) is
\("Block" tree from $tree.5.source with (unpack $new_lines))
)

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <2.5.5.5 to Nomsu 2.5.5.5 This file defines upgrades from Nomsu <2.5.5.5 to Nomsu 2.5.5.5

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <2.5 to Nomsu 2.5 This file defines upgrades from Nomsu <2.5 to Nomsu 2.5

View File

@ -15,7 +15,7 @@ upgrade $tree to "2" as:
$false_body = $tree.5 $false_body = $tree.5
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 \(if \($tree.2) \$true_body else \$false_body) return \(if \$tree.2 \$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"
@ -30,4 +30,4 @@ upgrade $tree to "2" as:
unless (($bits, last) is "Block" syntax tree): unless (($bits, last) is "Block" syntax tree):
$body = ($bits, last) $body = ($bits, last)
$bits.(#$bits) = (=lua "SyntaxTree{type='Block', source=\$body.source, \$body}") $bits.(#$bits) = (=lua "SyntaxTree{type='Block', source=\$body.source, \$body}")
return (=lua "SyntaxTree{type='Action', source=\$tree.source, unpack(\$bits)}") return (=lua "SyntaxTree{type='Action', source=\$tree.source, unpack(\$bits)}")

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <3.5.5.6 to Nomsu 3.5.5.6 This file defines upgrades from Nomsu <3.5.5.6 to Nomsu 3.5.5.6

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <3.6 to 3.6 This file defines upgrades from Nomsu <3.6 to 3.6

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <3.7 to 3.7 This file defines upgrades from Nomsu <3.7 to 3.7

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <3.8 to 3.8 (Text method changes) This file defines upgrades from Nomsu <3.8 to 3.8 (Text method changes)

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <=2 to Nomsu 3 This file defines upgrades from Nomsu <=2 to Nomsu 3

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <4.10.12.7 to 4.10.12.7 This file defines upgrades from Nomsu <4.10.12.7 to 4.10.12.7
use "compatibility/compatibility" use "compatibility/compatibility"
@ -59,6 +58,7 @@ upgrade $tree to "4.10.12.7" as:
..else: ..else:
if $has_use: if $has_use:
go to (insert chunk) go to (insert chunk)
$i += 1 $i += 1
return return
--- (insert chunk) --- --- (insert chunk) ---
@ -74,4 +74,4 @@ upgrade $tree to "4.10.12.7" as:
$new_tree = ("FileChunks" tree from $tree.source with $chunk1 $chunk2) $new_tree = ("FileChunks" tree from $tree.source with $chunk1 $chunk2)
for $i in (2 to #$tree): for $i in (2 to #$tree):
$new_tree.($i + 1) = $tree.$i $new_tree.($i + 1) = $tree.$i
return $new_tree return $new_tree

View File

@ -14,6 +14,7 @@ upgrade action "call 1 with" to "4.11" via
for ($i = $arg) in $tree.4: for ($i = $arg) in $tree.4:
$tree2.($i + 1) = $arg $tree2.($i + 1) = $arg
return (SyntaxTree $tree2) return (SyntaxTree $tree2)
upgrade action ->$yield_value to "4.11" as (yield $yield_value) upgrade action ->$yield_value to "4.11" as (yield $yield_value)
### Replace set {$x:1, $y:2} with [$x, $y] = [1, 2] ### Replace set {$x:1, $y:2} with [$x, $y] = [1, 2]
@ -95,4 +96,4 @@ upgrade action [
upgrade action [ upgrade action [
unless none of $items $body else $else unless none of $items $body else $else
unless none of $items then $body else $else unless none of $items then $body else $else
] to "4.11" as (if (any of $items) $body else $else) ] to "4.11" as (if (any of $items) $body else $else)

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <4.11 to Nomsu 4.11 This file defines upgrades from Nomsu <4.11 to Nomsu 4.11
(overhaul of function literals, deleting (if all of ...), etc. shorthand) (overhaul of function literals, deleting (if all of ...), etc. shorthand)

View File

@ -65,4 +65,4 @@ upgrade action "parse 1 as" to "4.8.10" via
return \(\$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

@ -9,4 +9,4 @@ upgrade action "if" to "4.9" via
for $tree: for $tree:
if (#$tree > 2): if (#$tree > 2):
return $tree return $tree
return \(when \$tree.2) return \(when \$tree.2)

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <6.15.9 to 6.15.9 This file defines upgrades from Nomsu <6.15.9 to 6.15.9
@ -18,4 +17,4 @@ upgrade action (for $x in $start to $stop $body) to "6.15.9" as
upgrade action [ upgrade action [
for $x in $start to $stop by $step $body for $x in $start to $stop by $step $body
for $x in $start to $stop via $step $body for $x in $start to $stop via $step $body
] to "6.15.9" as (for $x in ($start to $stop by $step) $body) ] to "6.15.9" as (for $x in ($start to $stop by $step) $body)

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines upgrades from Nomsu <6.15 to 6.15 This file defines upgrades from Nomsu <6.15 to 6.15

View File

@ -28,6 +28,7 @@ external:
for $i in (1 to #$action): for $i in (1 to #$action):
if ($action.$i is "Var" syntax tree): if ($action.$i is "Var" syntax tree):
$replacements.($action.$i.1) = "\(\$tree as lua id)[\$i]" $replacements.($action.$i.1) = "\(\$tree as lua id)[\$i]"
define mangler define mangler
(make tree $t) means: (make tree $t) means:
when: when:
@ -47,6 +48,7 @@ external:
$args, add (make tree $v) $args, add (make tree $v)
..else: ..else:
$args, add "\($k)=\(make tree $v)" $args, add "\($k)=\(make tree $v)"
return "SyntaxTree{\($args, joined with ", ")}" return "SyntaxTree{\($args, joined with ", ")}"
else: else:
@ -63,6 +65,7 @@ external:
return \$retval return \$retval
end) end)
") ")
return $lua return $lua
[ [
@ -110,6 +113,7 @@ external:
$tree = $tree =
SyntaxTree SyntaxTree
{: for ($k = $v) in $tree: add $k = ($v upgraded from $curr_version to $ver)} {: for ($k = $v) in $tree: add $k = ($v upgraded from $curr_version to $ver)}
if (($tree.type == "Action") and $ACTION_UPGRADES.$ver): if (($tree.type == "Action") and $ACTION_UPGRADES.$ver):
$(upgrade 1) = $ACTION_UPGRADES.$ver.($tree, get stub) $(upgrade 1) = $ACTION_UPGRADES.$ver.($tree, get stub)
if $(upgrade 1): if $(upgrade 1):
@ -140,4 +144,4 @@ external:
$tree upgraded from ($tree.version or $(NOMSU VERSION)) to $end_version $tree upgraded from ($tree.version or $(NOMSU VERSION)) to $end_version
($tree upgraded) means ($tree upgraded) means
$tree upgraded from ($tree.version or $(NOMSU VERSION)) to $(NOMSU VERSION) $tree upgraded from ($tree.version or $(NOMSU VERSION)) to $(NOMSU VERSION)

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
export "compatibility/compatibility" export "compatibility/compatibility"
export "compatibility/2" export "compatibility/2"
export "compatibility/2.3" export "compatibility/2.3"

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines actions for ANSI console color escape codes. This file defines actions for ANSI console color escape codes.

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file contains code that supports manipulating and using collections like lists This file contains code that supports manipulating and using collections like lists
and dictionaries. and dictionaries.
@ -163,6 +162,7 @@ external:
unless $seen.$: unless $seen.$:
$unique, add $ $unique, add $
$seen.$ = (yes) $seen.$ = (yes)
return $unique return $unique
### Ranges: ### Ranges:
@ -196,6 +196,7 @@ $range_mt = {
..else: ..else:
if ($i < $self.last): if ($i < $self.last):
return (nil) return (nil)
return $i return $i
return $range_mt.$key return $range_mt.$key

View File

@ -218,6 +218,7 @@ test:
..else: ..else:
$loop = $loop =
Lua "for _i,\($value as lua identifier) in _ipairs(\($iterable as lua expr)) do" Lua "for _i,\($value as lua identifier) in _ipairs(\($iterable as lua expr)) do"
--- (loop set) --- --- (loop set) ---
### TODO: don't always wrap in block ### TODO: don't always wrap in block
@ -276,6 +277,7 @@ test:
$nums, add $inner $nums, add $inner
if ($inner == 5): if ($inner == 5):
stop $outer stop $outer
assume ($nums == [1, -2, 3, -2, 3, 4, 3, 4, 5]) assume ($nums == [1, -2, 3, -2, 3, 4, 3, 4, 5])
### repeat $n times is a shorthand: ### repeat $n times is a shorthand:
@ -454,6 +456,7 @@ test:
recurse $ on $2 recurse $ on $2
..else: ..else:
$flat, add $ $flat, add $
assume (sorted $flat) == [1, 2, 3, 4, 5, 6] assume (sorted $flat) == [1, 2, 3, 4, 5, 6]
### Recurion control flow ### Recurion control flow

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines the code that creates and manipulates coroutines This file defines the code that creates and manipulates coroutines
@ -16,6 +15,7 @@ test:
yield 5 yield 5
repeat 3 times: repeat 3 times:
yield 6 yield 6
$nums = [] $nums = []
for $ in (coroutine from $fn): $nums, add $ for $ in (coroutine from $fn): $nums, add $
assume ($nums == [4, 5, 6, 6, 6]) assume ($nums == [4, 5, 6, 6, 6])
@ -27,6 +27,7 @@ test:
$d.x += 1 $d.x += 1
yield yield
$d.x += 1 $d.x += 1
repeat while ((coroutine status of $co) != "dead"): resume $co repeat while ((coroutine status of $co) != "dead"): resume $co
assume $d.x == 3 assume $d.x == 3
$(co) = (coroutine: yield 5) $(co) = (coroutine: yield 5)

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file contains basic error reporting code This file contains basic error reporting code
@ -27,6 +26,7 @@ use "core/control_flow"
end end
end end
") ")
if ($condition.type == "Action"): if ($condition.type == "Action"):
when $condition.stub is: when $condition.stub is:
"1 ==": "1 ==":
@ -132,6 +132,7 @@ test:
$fallback_lua, prepend "\n\$msg_lua = _result[2]\n" $fallback_lua, prepend "\n\$msg_lua = _result[2]\n"
if ($msg_lua, text, is lua id): if ($msg_lua, text, is lua id):
$fallback_lua, add free vars [($msg_lua, text)] $fallback_lua, add free vars [($msg_lua, text)]
$fallback_lua, prepend "-- Failure:\n" $fallback_lua, prepend "-- Failure:\n"
return Lua (" return Lua ("
do do
@ -191,4 +192,4 @@ test:
if not _results[1] then error(_results[2], 0) end if not _results[1] then error(_results[2], 0) end
if not _fell_through then return table.unpack(_results, 2) end if not _fell_through then return table.unpack(_results, 2) end
end end
") ")

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
A simple UUID function based on RFC 4122: http://www.ietf.org/rfc/rfc4122.txt A simple UUID function based on RFC 4122: http://www.ietf.org/rfc/rfc4122.txt

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### Export everything ### Export everything
export "core/metaprogramming" export "core/metaprogramming"
export "core/operators" export "core/operators"

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file contains basic input/output code This file contains basic input/output code

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines some common math literals and functions This file defines some common math literals and functions
@ -19,6 +18,7 @@ external:
$nan = (NaN) $nan = (NaN)
unless ($nan != $nan): unless ($nan != $nan):
fail "NaN failed" fail "NaN failed"
[infinity, inf] all compile to "math.huge" [infinity, inf] all compile to "math.huge"
[not a number, NaN, nan] all compile to "(0/0)" [not a number, NaN, nan] all compile to "(0/0)"
[pi, Pi, PI] all compile to "math.pi" [pi, Pi, PI] all compile to "math.pi"
@ -73,12 +73,14 @@ external:
for $ in $items: for $ in $items:
unless $: unless $:
return (no) return (no)
return (yes) return (yes)
[not all of $items, not all $items] all parse as (not (all of $items)) [not all of $items, not all $items] all parse as (not (all of $items))
[any of $items, any $items] all mean: [any of $items, any $items] all mean:
for $ in $items: for $ in $items:
if $: if $:
return (yes) return (yes)
return (no) return (no)
[none of $items, none $items] all parse as (not (any of $items)) [none of $items, none $items] all parse as (not (any of $items))
@ -123,6 +125,7 @@ external:
if (($best == (nil)) or ($key < $best_key)): if (($best == (nil)) or ($key < $best_key)):
$best = $item $best = $item
$best_key = $key $best_key = $key
return $best return $best
(max of $items by $item = $value_expr) parses as (max of $items by $item = $value_expr) parses as
@ -134,6 +137,7 @@ external:
if (($best == (nil)) or ($key > $best_key)): if (($best == (nil)) or ($key > $best_key)):
$best = $item $best = $item
$best_key = $key $best_key = $key
return $best return $best
test: test:

View File

@ -248,6 +248,7 @@ test:
with external [$x]: with external [$x]:
$x = "inner" $x = "inner"
$y = "inner" $y = "inner"
set external x local y set external x local y
unless (($x == "inner") and ($y == "outer")): unless (($x == "inner") and ($y == "outer")):
fail "'with external' failed." fail "'with external' failed."
@ -516,4 +517,4 @@ test:
($tree with $t -> $replacement) parses as ($tree, with ($t -> $replacement)) ($tree with $t -> $replacement) parses as ($tree, with ($t -> $replacement))
[tree $tree with vars $replacements, $tree with vars $replacements] all parse as [tree $tree with vars $replacements, $tree with vars $replacements] all parse as
$tree, with $replacements $tree, with $replacements
($tree has subtree $match_tree) parses as ($tree, contains $match_tree) ($tree has subtree $match_tree) parses as ($tree, contains $match_tree)

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file contains definitions of operators like "+" and "and". This file contains definitions of operators like "+" and "and".
@ -136,6 +135,7 @@ test:
unless ($calls == 1): unless ($calls == 1):
fail "Three-way comparison evaluated middle value multiple times" fail "Three-way comparison evaluated middle value multiple times"
($x < $y < $z) parses as ((($a $b $c) -> (($a < $b) and ($b < $c))) $x $y $z) ($x < $y < $z) parses as ((($a $b $c) -> (($a < $b) and ($b < $c))) $x $y $z)
($x <= $y < $z) parses as ((($a $b $c) -> (($a <= $b) and ($b < $c))) $x $y $z) ($x <= $y < $z) parses as ((($a $b $c) -> (($a <= $b) and ($b < $c))) $x $y $z)
($x < $y <= $z) parses as ((($a $b $c) -> (($a < $b) and ($b <= $c))) $x $y $z) ($x < $y <= $z) parses as ((($a $b $c) -> (($a < $b) and ($b <= $c))) $x $y $z)
@ -213,7 +213,7 @@ lua> "end"
### Unary operators ### Unary operators
test: test:
assume (-(5) == -5) assume ((- 5) == -5)
assume ((not (yes)) == (no)) assume ((not (yes)) == (no))
-$ compiles to "(-(\($ as lua expr)))" -$ compiles to "(-(\($ as lua expr)))"
(not $) compiles to "(not \($ as lua expr))" (not $) compiles to "(not \($ as lua expr))"
@ -246,6 +246,7 @@ test:
wrap $x around 3 wrap $x around 3
unless ($x == 1): unless ($x == 1):
fail "wrap around failed" fail "wrap around failed"
($var += $) parses as ($var = (($var or 0) + $)) ($var += $) parses as ($var = (($var or 0) + $))
($var -= $) parses as ($var = (($var or 0) - $)) ($var -= $) parses as ($var = (($var or 0) - $))
($var *= $) parses as ($var = (($var or 1) * $)) ($var *= $) parses as ($var = (($var or 1) * $))
@ -253,4 +254,4 @@ test:
($var ^= $) parses as ($var = ($var ^ $)) ($var ^= $) parses as ($var = ($var ^ $))
($var and= $) parses as ($var = ($var and $)) ($var and= $) parses as ($var = ($var and $))
($var or= $) parses as ($var = ($var or $)) ($var or= $) parses as ($var = ($var or $))
(wrap $var around $) parses as ($var = ($var wrapped around $)) (wrap $var around $) parses as ($var = ($var wrapped around $))

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file contains some definitions of text escape sequences, including ANSI console This file contains some definitions of text escape sequences, including ANSI console
color codes. color codes.

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
A library for simple object oriented programming. A library for simple object oriented programming.
@ -122,4 +121,4 @@ external:
") ")
$lua, add free vars [$class_id] $lua, add free vars [$class_id]
return $lua return $lua

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines time-related actions. This file defines time-related actions.
@ -37,7 +36,7 @@ external:
if ($other is "a Time"): if ($other is "a Time"):
return ($os.difftime $self ($os.time $other)) return ($os.difftime $self ($os.time $other))
return (a Time ($os.date "*t" ($self - $other, rounded))) return (a Time ($os.date "*t" ($self - $other, rounded)))
($self, <$other) means (($self, since epoch) < ($other, since epoch)) ($self, <$other) means (($self, since epoch) < ($other, since epoch))
($self, <=$other) means (($self, since epoch) <= ($other, since epoch)) ($self, <=$other) means (($self, since epoch) <= ($other, since epoch))
($self, as text) means ($os.date "%I:%M%p %a %b %e %Y" ($os.time $self)) ($self, as text) means ($os.date "%I:%M%p %a %b %e %Y" ($os.time $self))
@ -51,4 +50,4 @@ external:
### Lua does not come with a sleep() function, only an os.clock() function, ### Lua does not come with a sleep() function, only an os.clock() function,
so this busy-loop is necessary for cross-platform compatibility. so this busy-loop is necessary for cross-platform compatibility.
$deadline = (($os.clock()) + $t) $deadline = (($os.clock()) + $t)
repeat while (($os.clock()) < $deadline): do nothing repeat while (($os.clock()) < $deadline): do nothing

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines some actions for hashing files and looking up files by hash. This file defines some actions for hashing files and looking up files by hash.
@ -60,4 +59,5 @@ external:
$file_hash = (hash $contents) $file_hash = (hash $contents)
if ($file_hash == $hash): if ($file_hash == $hash):
return $filename return $filename
(hash of file $filename) parses as (hash (read file $filename)) (hash of file $filename) parses as (hash (read file $filename))

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines some actions that interact with the filesystem. This file defines some actions that interact with the filesystem.

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### A progress bar ### A progress bar
use "consolecolor" use "consolecolor"
@ -16,10 +15,11 @@ external:
$bits = [" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█"] $bits = [" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█"]
$middle = ("" if ($x == $w) else $bits.(1 + (floor (#$bits * ($x mod 1))))) $middle = ("" if ($x == $w) else $bits.(1 + (floor (#$bits * ($x mod 1)))))
return (" return ("
\(reset color)[\(green)\($bits, last, rep (floor $x))\$middle\ \(reset color)[\(green)\($bits, last, rep (floor $x))\($middle)\
..\(" ", rep ($w - ((floor $x) + 1)))\(reset color)] ..\(" ", rep ($w - ((floor $x) + 1)))\(reset color)]
") ")
..else: ..else:
### Probably not unicode support either: ### Probably not unicode support either:
return "[\("#", rep ($x, rounded down))\("-", rep ($w - ($x, rounded down)))]" return "[\("#", rep ($x, rounded down))\("-", rep ($w - ($x, rounded down)))]"
($w wide $ progress bar) means (($ * $w) / $w progress bar) ($w wide $ progress bar) means (($ * $w) / $w progress bar)

View File

@ -14,6 +14,7 @@ external:
..else: ..else:
at $callsite fail at $callsite fail
"Command failure: Command `\($cmd)` was terminated by signal \$return" "Command failure: Command `\($cmd)` was terminated by signal \$return"
return $contents return $contents
(at $callsite sh> $cmd) means: (at $callsite sh> $cmd) means:

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
Auto-format Nomsu code. Usage: Auto-format Nomsu code. Usage:
nomsu -t format [-i] file1 file2... nomsu -t format [-i] file1 file2...

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
A tool to install third party Nomsu packages A tool to install third party Nomsu packages
@ -57,4 +56,5 @@ command line program with $args:
$cmd = ($filename, with $patt -> $action.cmd) $cmd = ($filename, with $patt -> $action.cmd)
run command $cmd run command $cmd
do next $filename do next $filename
fail "Not sure what to do with \$filename" fail "Not sure what to do with \$filename"

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
A tool to list installed third party Nomsu packages A tool to list installed third party Nomsu packages

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
Tool to print out a parse tree of files in an easy-to-read format. Usage: Tool to print out a parse tree of files in an easy-to-read format. Usage:
nomsu tools/parse.nom file1 file2 directory1 ... nomsu tools/parse.nom file1 file2 directory1 ...

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This file defines a Read-Evaluate-Print-Loop (REPL) for Nomsu This file defines a Read-Evaluate-Print-Loop (REPL) for Nomsu
@ -54,6 +53,7 @@ command line program with $args:
### clear the line ### clear the line
if $(COLOR ENABLED): if $(COLOR ENABLED):
say "\027[1A\027[2K" inline say "\027[1A\027[2K" inline
go to (run buffer) go to (run buffer)
$buff, add ($line, with "\t" -> " ") $buff, add ($line, with "\t" -> " ")
say (dim (yellow ".. ")) inline say (dim (yellow ".. ")) inline

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
This is a tool to replace syntax trees with something new. This is a tool to replace syntax trees with something new.
@ -63,6 +62,7 @@ command line program with $args:
..else: ..else:
$substitution_values.($patt.1) = $tree $substitution_values.($patt.1) = $tree
return $substitution_values return $substitution_values
($tree.type != $patt.type): return (nil) ($tree.type != $patt.type): return (nil)
($tree.type == "Action"): ($tree.type == "Action"):
if (($tree, get stub) != ($patt, get stub)): return (nil) if (($tree, get stub) != ($patt, get stub)): return (nil)
@ -135,6 +135,7 @@ command line program with $args:
if ($user_answers.$t == "n"): return (nil) if ($user_answers.$t == "n"): return (nil)
$replaced.$t = (yes) $replaced.$t = (yes)
return $ret return $ret
$tree2 = ($tree with replacements) $tree2 = ($tree with replacements)
if $args.i: if $args.i:
if (#$user_answers > 0): say "" if (#$user_answers > 0): say ""
@ -145,4 +146,4 @@ command line program with $args:
if (#$replaced > 0): if (#$replaced > 0):
write "\($tree2 as nomsu)" to file $filename write "\($tree2 as nomsu)" to file $filename
..else: ..else:
say ($tree2 as nomsu) say ($tree2 as nomsu)

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
Tool to run all tests in a file (i.e. the code block inside a call to 'test $'). Usage: Tool to run all tests in a file (i.e. the code block inside a call to 'test $'). Usage:
nomsu tools/test.nom file1 file2 directory1 ... nomsu tools/test.nom file1 file2 directory1 ...

View File

@ -558,4 +558,4 @@ command line program with $args:
\\(^\("ᴗ" if $(COLOR ENABLED) else "_")^)/ \\(^\("ᴗ" if $(COLOR ENABLED) else "_")^)/
") ")

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
A tool to uninstall third party Nomsu packages (the inverse of the install tool) A tool to uninstall third party Nomsu packages (the inverse of the install tool)

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0 #!/usr/bin/env nomsu -V7.0.0
### ###
Tool to automatically update code from old versions of Nomsu. Usage: Tool to automatically update code from old versions of Nomsu. Usage:
nomsu tools/upgrade.nom [-i] file1 file2 directory1 ... nomsu tools/upgrade.nom [-i] file1 file2 directory1 ...
@ -19,6 +18,7 @@ command line program with $args:
if $start_version: if $start_version:
try: try:
use $start_version use $start_version
$version = ($args."upgrade-to" or $(NOMSU VERSION)) $version = ($args."upgrade-to" or $(NOMSU VERSION))
$test = ($args.t or $args.test) $test = ($args.t or $args.test)
for $filename in $args.extras: for $filename in $args.extras:
@ -31,6 +31,7 @@ command line program with $args:
$uptree = $uptree =
$tree upgraded from ($start_version or ($tree.version or $(NOMSU VERSION))) to $tree upgraded from ($start_version or ($tree.version or $(NOMSU VERSION))) to
$version $version
$text = "\$leading_indent\($uptree as nomsu, text, with "\n" -> "\n\$leading_indent")" $text = "\$leading_indent\($uptree as nomsu, text, with "\n" -> "\n\$leading_indent")"
when: when:
$inplace: $inplace:
@ -44,4 +45,4 @@ command line program with $args:
say (bright "\$filename will be changed") say (bright "\$filename will be changed")
else: else:
say $text inline say $text inline