Fixed some autoformatting stuff, and prepping to deprecate some math

shorthand.
This commit is contained in:
Bruce Hill 2018-11-11 16:26:38 -08:00
parent 370fad9cd3
commit 9d82d522c1
7 changed files with 12 additions and 48 deletions

View File

@ -37,6 +37,9 @@ upgrade action (%k = %v for %i in %start to %stop by %step) to "4.10.12.7" as {.
upgrade action (%k = %v for %i in %start to %stop via %step) to "4.10.12.7" as {..} upgrade action (%k = %v for %i in %start to %stop via %step) to "4.10.12.7" as {..}
: for %i in %start to %stop by %step: add %k = %v : for %i in %start to %stop by %step: add %k = %v
upgrade action (parse %text from %filename) to "4.10.12.7" as (..)
(%NomsuCode (%Source %filename 1 (size of %text))) parsed
upgrade action (% as lua statements) to "4.10.12.7" as (% as lua) upgrade action (% as lua statements) to "4.10.12.7" as (% as lua)
upgrade action (compile error at %pos %err hint %hint) to "4.10.12.7" as (..) upgrade action (compile error at %pos %err hint %hint) to "4.10.12.7" as (..)
compile error at %pos %err %hint compile error at %pos %err %hint

View File

@ -143,43 +143,6 @@ externally [product of %items, product %items] all mean:
externally [avg of %items, average of %items] all mean (..) externally [avg of %items, average of %items] all mean (..)
(sum of %items) / (size of %items) (sum of %items) / (size of %items)
# Shorthand for control flow
[if all of %items %body, if all of %items then %body] all parse as (..)
if (all of %items) %body
[unless all of %items %body, unless all of %items then %body] all parse as (..)
if (not (all of %items)) %body
[if any of %items %body, if any of %items then %body] all parse as (..)
if (any of %items) %body
[unless any of %items %body, unless any of %items then %body] all parse as (..)
if (not (any of %items)) %body
[if none of %items %body, if none of %items then %body] all parse as (..)
if (not (any of %items)) %body
[unless none of %items %body, unless none of %items then %body] all parse as (..)
if (any of %items) %body
[if all of %items %body else %else, if all of %items then %body else %else] \
..all parse as (if (all of %items) %body else %else)
[unless all of %items %body else %else, unless all of %items then %body else %else] \
..all parse as (if (not (all of %items)) %body else %else)
[if any of %items %body else %else, if any of %items then %body else %else] \
..all parse as (if (any of %items) %body else %else)
[unless any of %items %body else %else, unless any of %items then %body else %else] \
..all parse as (if (not (any of %items)) %body else %else)
[if none of %items %body else %else, if none of %items then %body else %else] \
..all parse as (if (not (any of %items)) %body else %else)
[unless none of %items %body else %else, unless none of %items then %body else %else] \
..all parse as (if (any of %items) %body else %else)
# Min/max # Min/max
externally [min of %items, smallest of %items, lowest of %items] all mean: externally [min of %items, smallest of %items, lowest of %items] all mean:
%best = (nil) %best = (nil)

View File

@ -65,7 +65,7 @@ say "\
Similarly, you can put a long interpolated indented value like: \(..) Similarly, you can put a long interpolated indented value like: \(..)
1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9
.. between a backslash and two periods." .. between a backslash and two periods."
say "Single-line text can contain escape sequences like \", \\, \000, and \n" say "Single-line text can contain escape sequences like \", \\, \000, and \n"
# How do I define a list? # How do I define a list?

View File

@ -242,7 +242,7 @@ tree_to_nomsu = function(tree)
local _exp_0 = tree.type local _exp_0 = tree.type
if "FileChunks" == _exp_0 then if "FileChunks" == _exp_0 then
if tree.shebang then if tree.shebang then
nomsu:append(tree.shebang, "\n") nomsu:append(tree.shebang)
end end
for chunk_no, chunk in ipairs(tree) do for chunk_no, chunk in ipairs(tree) do
if chunk_no > 1 then if chunk_no > 1 then

View File

@ -184,7 +184,7 @@ tree_to_nomsu = (tree)->
switch tree.type switch tree.type
when "FileChunks" when "FileChunks"
if tree.shebang if tree.shebang
nomsu\append tree.shebang, "\n" nomsu\append tree.shebang
for chunk_no, chunk in ipairs tree for chunk_no, chunk in ipairs tree
nomsu\append "\n\n#{("~")\rep(80)}\n\n" if chunk_no > 1 nomsu\append "\n\n#{("~")\rep(80)}\n\n" if chunk_no > 1

View File

@ -1,7 +1,7 @@
#!/usr/bin/env nomsu -V4.10.12.7 #!/usr/bin/env nomsu -V4.10.12.7
# #
Auto-format Nomsu code. Usage: Auto-format Nomsu code. Usage:
nomsu tools/autoformat.nom [-i] file1 file2 directory1 ... nomsu tools/autoformat.nom [-i] file1 file2 directory1 ...
If the first argument is "-i", modifications will be performed in-place. Otherwise, If the first argument is "-i", modifications will be performed in-place. Otherwise,
the formatted code will be printed. the formatted code will be printed.
@ -18,10 +18,10 @@ if (%args.1 is "-i"):
for %path in %args: for %path in %args:
for file %filename in %path: for file %filename in %path:
unless (%filename::matches "%.nom$"): do next %filename unless (%filename::matches "%.nom$"): do next %filename
%formatted = "\ %contents = (read file %filename)
..#!/usr/bin/env nomsu -V\(Nomsu version) %code = (%NomsuCode::from (Source %filename 1 (size of %contents)) %contents)
\((parse (read file %filename) from %filename) as nomsu)" %tree = (%code parsed)
%formatted = ((%tree as nomsu)::text)
if %inplace: if %inplace:
write %formatted to file %filename write %formatted to file %filename
..else: ..else:

View File

@ -4,9 +4,7 @@ use "lib/os.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
externally [quit, exit] all mean: externally [quit, exit] all mean: lua> "os.exit(0)"
lua> "os.exit(0)"
externally (help) means: externally (help) means:
say "\ say "\
..This is the Nomsu v\(Nomsu version) interactive console. ..This is the Nomsu v\(Nomsu version) interactive console.