Fixed some autoformatting stuff, and prepping to deprecate some math
shorthand.
This commit is contained in:
parent
370fad9cd3
commit
9d82d522c1
@ -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 {..}
|
||||
: 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 (compile error at %pos %err hint %hint) to "4.10.12.7" as (..)
|
||||
compile error at %pos %err %hint
|
||||
|
@ -143,43 +143,6 @@ externally [product of %items, product %items] all mean:
|
||||
externally [avg of %items, average of %items] all mean (..)
|
||||
(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
|
||||
externally [min of %items, smallest of %items, lowest of %items] all mean:
|
||||
%best = (nil)
|
||||
|
@ -242,7 +242,7 @@ tree_to_nomsu = function(tree)
|
||||
local _exp_0 = tree.type
|
||||
if "FileChunks" == _exp_0 then
|
||||
if tree.shebang then
|
||||
nomsu:append(tree.shebang, "\n")
|
||||
nomsu:append(tree.shebang)
|
||||
end
|
||||
for chunk_no, chunk in ipairs(tree) do
|
||||
if chunk_no > 1 then
|
||||
|
@ -184,7 +184,7 @@ tree_to_nomsu = (tree)->
|
||||
switch tree.type
|
||||
when "FileChunks"
|
||||
if tree.shebang
|
||||
nomsu\append tree.shebang, "\n"
|
||||
nomsu\append tree.shebang
|
||||
|
||||
for chunk_no, chunk in ipairs tree
|
||||
nomsu\append "\n\n#{("~")\rep(80)}\n\n" if chunk_no > 1
|
||||
|
@ -18,10 +18,10 @@ if (%args.1 is "-i"):
|
||||
for %path in %args:
|
||||
for file %filename in %path:
|
||||
unless (%filename::matches "%.nom$"): do next %filename
|
||||
%formatted = "\
|
||||
..#!/usr/bin/env nomsu -V\(Nomsu version)
|
||||
\((parse (read file %filename) from %filename) as nomsu)"
|
||||
|
||||
%contents = (read file %filename)
|
||||
%code = (%NomsuCode::from (Source %filename 1 (size of %contents)) %contents)
|
||||
%tree = (%code parsed)
|
||||
%formatted = ((%tree as nomsu)::text)
|
||||
if %inplace:
|
||||
write %formatted to file %filename
|
||||
..else:
|
||||
|
@ -4,9 +4,7 @@ use "lib/os.nom"
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
externally [quit, exit] all mean:
|
||||
lua> "os.exit(0)"
|
||||
|
||||
externally [quit, exit] all mean: lua> "os.exit(0)"
|
||||
externally (help) means:
|
||||
say "\
|
||||
..This is the Nomsu v\(Nomsu version) interactive console.
|
||||
|
Loading…
Reference in New Issue
Block a user