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
### How do I...
### Write a comment? Put a # and go till the end of the line
### How do I write a multi-line comment?
@ -199,6 +198,7 @@ say both "Hello" and also "world!"
$f2 = $tmp
if ($f2 > $n):
return $f2
say (first fibonacci above 10)
### 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:
return (Lua "-- (debug code removed for production)")
$DEBUG_ENABLED = (yes)
### Constants can be defined as macros
@ -318,6 +319,7 @@ debug only:
$key = ($key_fn $item)
if (($best == (nil)) or ($key > $best_key)):
[$best, $best_key] = [$item, $key]
return $best
### Function literals look like: $x -> ($x * $x)
@ -338,6 +340,7 @@ say (best of [2, -3, 4, -8] according to $($ squared))
$key = $key_expr
if (($best == (nil)) or ($key > $best_key)):
[$best, $best_key] = [$item, $key]
return $best
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -352,4 +355,5 @@ say
$key = ($x * $x)
if (($best == (nil)) or ($key > $best_key)):
[$best, $best_key] = [$x, $key]
return $best

View File

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

View File

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

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0
###
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
$conditions = []
$new_lines = []
$body =
$tree.2 if ($tree.2 is "Block" syntax tree) else [$tree.2]
$body = ($tree.2 if ($tree.2 is "Block" syntax tree) else [$tree.2])
for $line in $body:
when:
(not ($line is "Action" syntax tree)):
@ -48,9 +46,7 @@ upgrade $tree to "2.4" as:
"if 1 is ?" "if 1 = ?":
$values = []
$new_lines = []
$body =
$tree.5 if ($tree.5 is "Block" syntax tree) else [$tree.5]
$body = ($tree.5 if ($tree.5 is "Block" syntax tree) else [$tree.5])
for $line in $body:
when:
(not ($line is "Action" syntax tree)):
@ -76,7 +72,4 @@ upgrade $tree to "2.4" as:
$values = []
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
###
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
###
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
unless ($false_body is "Block" syntax tree):
$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 = [
"if", "unless", "for 1 in", "for 1 = 2 in", "repeat while 1", "repeat 1 times"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0
###
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
### Export everything
export "core/metaprogramming"
export "core/operators"

View File

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

View File

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

View File

@ -248,6 +248,7 @@ test:
with external [$x]:
$x = "inner"
$y = "inner"
set external x local y
unless (($x == "inner") and ($y == "outer")):
fail "'with external' failed."

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0
###
This file contains definitions of operators like "+" and "and".
@ -136,6 +135,7 @@ test:
unless ($calls == 1):
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)
@ -213,7 +213,7 @@ lua> "end"
### Unary operators
test:
assume (-(5) == -5)
assume ((- 5) == -5)
assume ((not (yes)) == (no))
-$ compiles to "(-(\($ as lua expr)))"
(not $) compiles to "(not \($ as lua expr))"
@ -246,6 +246,7 @@ test:
wrap $x around 3
unless ($x == 1):
fail "wrap around failed"
($var += $) parses as ($var = (($var or 0) + $))
($var -= $) parses as ($var = (($var or 0) - $))
($var *= $) parses as ($var = (($var or 1) * $))

View File

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

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0
###
A library for simple object oriented programming.

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0
###
This file defines time-related actions.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0
###
This is a tool to replace syntax trees with something new.
@ -63,6 +62,7 @@ command line program with $args:
..else:
$substitution_values.($patt.1) = $tree
return $substitution_values
($tree.type != $patt.type): return (nil)
($tree.type == "Action"):
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)
$replaced.$t = (yes)
return $ret
$tree2 = ($tree with replacements)
if $args.i:
if (#$user_answers > 0): say ""

View File

@ -1,5 +1,4 @@
#!/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:
nomsu tools/test.nom file1 file2 directory1 ...

View File

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