Changed autoformatting rules to ensure tests get clumped together with
the thing below them.
This commit is contained in:
parent
7c488dd266
commit
ab4ebdf175
@ -11,7 +11,6 @@ use "core/operators.nom"
|
|||||||
# Indexing
|
# Indexing
|
||||||
test:
|
test:
|
||||||
assume ((2 nd to last in [1, 2, 3, 4, 5]) is 4)
|
assume ((2 nd to last in [1, 2, 3, 4, 5]) is 4)
|
||||||
|
|
||||||
compile [..]
|
compile [..]
|
||||||
%index st to last in %list, %index nd to last in %list
|
%index st to last in %list, %index nd to last in %list
|
||||||
%index rd to last in %list, %index th to last in %list
|
%index rd to last in %list, %index th to last in %list
|
||||||
@ -25,7 +24,6 @@ parse [first in %list] as %list.1
|
|||||||
# Membership testing
|
# Membership testing
|
||||||
test:
|
test:
|
||||||
assume (3 is in [1, 2, 3, 4, 5])
|
assume (3 is in [1, 2, 3, 4, 5])
|
||||||
|
|
||||||
action [%item is in %list, %list contains %item, %list has %item]:
|
action [%item is in %list, %list contains %item, %list has %item]:
|
||||||
for %key = %value in %list:
|
for %key = %value in %list:
|
||||||
if (%key is %item): return (yes)
|
if (%key is %item): return (yes)
|
||||||
@ -33,7 +31,6 @@ action [%item is in %list, %list contains %item, %list has %item]:
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume (99 isn't in [1, 2, 3])
|
assume (99 isn't in [1, 2, 3])
|
||||||
|
|
||||||
action [..]
|
action [..]
|
||||||
%item isn't in %list, %item is not in %list, %list doesn't contain %item
|
%item isn't in %list, %item is not in %list, %list doesn't contain %item
|
||||||
%list does not contain %item, %list doesn't have %item, %list does not have %item
|
%list does not contain %item, %list doesn't have %item, %list does not have %item
|
||||||
@ -44,12 +41,11 @@ action [..]
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume ({x:no} has key "x")
|
assume ({x:no} has key "x")
|
||||||
|
|
||||||
parse [%list has key %index, %list has index %index] as (%list.%index != (nil))
|
parse [%list has key %index, %list has index %index] as (%list.%index != (nil))
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ({x:no} doesn't have key "y")
|
assume ({x:no} doesn't have key "y")
|
||||||
assume (not ({x:no} doesn't have key "x"))
|
assume (not ({x:no} doesn't have key "x"))
|
||||||
|
|
||||||
parse [..]
|
parse [..]
|
||||||
%list doesn't have key %index, %list does not have key %index
|
%list doesn't have key %index, %list does not have key %index
|
||||||
%list doesn't have index %index, %list does not have index %index
|
%list doesn't have index %index, %list does not have index %index
|
||||||
@ -66,7 +62,6 @@ test:
|
|||||||
assume ((last in %list) is 5)
|
assume ((last in %list) is 5)
|
||||||
remove index 1 from %list
|
remove index 1 from %list
|
||||||
assume ((first in %list) is 2)
|
assume ((first in %list) is 2)
|
||||||
|
|
||||||
compile [..]
|
compile [..]
|
||||||
append %item to %list, add %item to %list, to %list add %item, to %list append %item
|
append %item to %list, add %item to %list, to %list add %item, to %list append %item
|
||||||
..to (Lua "table.insert(\(%list as lua expr), \(%item as lua expr))")
|
..to (Lua "table.insert(\(%list as lua expr), \(%item as lua expr))")
|
||||||
@ -86,7 +81,6 @@ compile [remove index %index from %list] to (..)
|
|||||||
# List Comprehension
|
# List Comprehension
|
||||||
test:
|
test:
|
||||||
assume (((% * %) for % in [1, 2, 3]) == [1, 4, 9])
|
assume (((% * %) for % in [1, 2, 3]) == [1, 4, 9])
|
||||||
|
|
||||||
parse [%expression for %item in %iterable] as (..)
|
parse [%expression for %item in %iterable] as (..)
|
||||||
result of:
|
result of:
|
||||||
%comprehension = []
|
%comprehension = []
|
||||||
@ -108,13 +102,11 @@ parse [..]
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume (((% * %) for % in 1 to 3) == [1, 4, 9])
|
assume (((% * %) for % in 1 to 3) == [1, 4, 9])
|
||||||
|
|
||||||
parse [%expression for %var in %start to %stop] as (..)
|
parse [%expression for %var in %start to %stop] as (..)
|
||||||
%expression for %var in %start to %stop via 1
|
%expression for %var in %start to %stop via 1
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume (("\%k,\%v" for %k = %v in {x:1}) == ["x,1"])
|
assume (("\%k,\%v" for %k = %v in {x:1}) == ["x,1"])
|
||||||
|
|
||||||
parse [..]
|
parse [..]
|
||||||
%expression for %key = %value in %iterable
|
%expression for %key = %value in %iterable
|
||||||
%expression for %key %value in %iterable
|
%expression for %key %value in %iterable
|
||||||
@ -128,7 +120,6 @@ parse [..]
|
|||||||
# Dict comprehensions
|
# Dict comprehensions
|
||||||
test:
|
test:
|
||||||
assume (((% * %) = % for % in [1, 2, 3]) == {1:1, 4:2, 9:3})
|
assume (((% * %) = % for % in [1, 2, 3]) == {1:1, 4:2, 9:3})
|
||||||
|
|
||||||
parse [%key = %value for %item in %iterable, %key %value for %item in %iterable] as
|
parse [%key = %value for %item in %iterable, %key %value for %item in %iterable] as
|
||||||
..(..)
|
..(..)
|
||||||
result of:
|
result of:
|
||||||
@ -139,7 +130,6 @@ parse [%key = %value for %item in %iterable, %key %value for %item in %iterable]
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((%k = (%v * %v) for %k = %v in {x:1, y:2, z:3}) == {x:1, y:4, z:9})
|
assume ((%k = (%v * %v) for %k = %v in {x:1, y:2, z:3}) == {x:1, y:4, z:9})
|
||||||
|
|
||||||
parse [..]
|
parse [..]
|
||||||
%key = %value for %src_key = %src_value in %iterable
|
%key = %value for %src_key = %src_value in %iterable
|
||||||
%key %value for %src_key %src_value in %iterable
|
%key %value for %src_key %src_value in %iterable
|
||||||
@ -164,7 +154,6 @@ parse [..]
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume (((% * %) = % for % in 1 to 3) == {1:1, 4:2, 9:3})
|
assume (((% * %) = % for % in 1 to 3) == {1:1, 4:2, 9:3})
|
||||||
|
|
||||||
parse [..]
|
parse [..]
|
||||||
%key = %value for %item in %start to %stop
|
%key = %value for %item in %start to %stop
|
||||||
%key %value for %item in %start to %stop
|
%key %value for %item in %start to %stop
|
||||||
@ -172,7 +161,6 @@ parse [..]
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume (([[1, 2], [3, 4]] flattened) == [1, 2, 3, 4])
|
assume (([[1, 2], [3, 4]] flattened) == [1, 2, 3, 4])
|
||||||
|
|
||||||
action [%lists flattened]:
|
action [%lists flattened]:
|
||||||
%flat = []
|
%flat = []
|
||||||
for %list in %lists:
|
for %list in %lists:
|
||||||
@ -181,15 +169,14 @@ action [%lists flattened]:
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((entries in {x:1}) == [{key:"x", value:1}])
|
assume ((entries in {x:1}) == [{key:"x", value:1}])
|
||||||
|
|
||||||
parse [entries in %dict] as ({key:%k, value:%v} for %k = %v in %dict)
|
parse [entries in %dict] as ({key:%k, value:%v} for %k = %v in %dict)
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((keys in {x:1}) == ["x"])
|
assume ((keys in {x:1}) == ["x"])
|
||||||
|
|
||||||
parse [keys in %dict, keys of %dict] as (%k for %k = %v in %dict)
|
parse [keys in %dict, keys of %dict] as (%k for %k = %v in %dict)
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((values in {x:1}) == [1])
|
assume ((values in {x:1}) == [1])
|
||||||
|
|
||||||
parse [values in %dict, values of %dict] as (%v for %k = %v in %dict)
|
parse [values in %dict, values of %dict] as (%v for %k = %v in %dict)
|
||||||
|
|
||||||
# Metatable stuff
|
# Metatable stuff
|
||||||
@ -197,13 +184,11 @@ test:
|
|||||||
%t = {}
|
%t = {}
|
||||||
set %t 's metatable to {__tostring:[%] -> "XXX"}
|
set %t 's metatable to {__tostring:[%] -> "XXX"}
|
||||||
assume ("\%t" == "XXX")
|
assume ("\%t" == "XXX")
|
||||||
|
|
||||||
compile [set %dict 's metatable to %metatable] to (..)
|
compile [set %dict 's metatable to %metatable] to (..)
|
||||||
Lua "setmetatable(\(%dict as lua expr), \(%metatable as lua expr));"
|
Lua "setmetatable(\(%dict as lua expr), \(%metatable as lua expr));"
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume (({} with fallback % -> (% + 1)).10 == 11)
|
assume (({} with fallback % -> (% + 1)).10 == 11)
|
||||||
|
|
||||||
compile [%dict with fallback %key -> %value] to (..)
|
compile [%dict with fallback %key -> %value] to (..)
|
||||||
Lua value ".."
|
Lua value ".."
|
||||||
setmetatable(\(%dict as lua expr), {__index=function(self, \(%key as lua expr))
|
setmetatable(\(%dict as lua expr), {__index=function(self, \(%key as lua expr))
|
||||||
@ -222,7 +207,6 @@ test:
|
|||||||
%keys = {1:999, 2:0, 3:50}
|
%keys = {1:999, 2:0, 3:50}
|
||||||
sort %x by % = %keys.%
|
sort %x by % = %keys.%
|
||||||
assume (%x == [2, 3, 1])
|
assume (%x == [2, 3, 1])
|
||||||
|
|
||||||
compile [sort %items] to (Lua "table.sort(\(%items as lua expr));")
|
compile [sort %items] to (Lua "table.sort(\(%items as lua expr));")
|
||||||
parse [sort %items by %item = %key_expr, sort %items by %item -> %key_expr] as (..)
|
parse [sort %items by %item = %key_expr, sort %items by %item -> %key_expr] as (..)
|
||||||
do:
|
do:
|
||||||
@ -233,7 +217,6 @@ parse [sort %items by %item = %key_expr, sort %items by %item -> %key_expr] as (
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((sorted [3, 1, 2]) == [1, 2, 3])
|
assume ((sorted [3, 1, 2]) == [1, 2, 3])
|
||||||
|
|
||||||
action [%items sorted, sorted %items]:
|
action [%items sorted, sorted %items]:
|
||||||
%copy = (% for % in %items)
|
%copy = (% for % in %items)
|
||||||
sort %copy
|
sort %copy
|
||||||
@ -247,7 +230,6 @@ parse [%items sorted by %item = %key, %items sorted by %item -> %key] as (..)
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((unique [1, 2, 1, 3, 2, 3]) == [1, 2, 3])
|
assume ((unique [1, 2, 1, 3, 2, 3]) == [1, 2, 3])
|
||||||
|
|
||||||
action [unique %items]:
|
action [unique %items]:
|
||||||
%unique = []
|
%unique = []
|
||||||
%seen = {}
|
%seen = {}
|
||||||
|
@ -16,7 +16,6 @@ compile [do nothing] to (Lua "")
|
|||||||
test:
|
test:
|
||||||
if (no):
|
if (no):
|
||||||
barf "conditional fail"
|
barf "conditional fail"
|
||||||
|
|
||||||
compile [if %condition %if_body] to (..)
|
compile [if %condition %if_body] to (..)
|
||||||
Lua ".."
|
Lua ".."
|
||||||
if \(%condition as lua expr) then
|
if \(%condition as lua expr) then
|
||||||
@ -26,7 +25,6 @@ compile [if %condition %if_body] to (..)
|
|||||||
test:
|
test:
|
||||||
unless (yes):
|
unless (yes):
|
||||||
barf "conditional fail"
|
barf "conditional fail"
|
||||||
|
|
||||||
parse [unless %condition %unless_body] as (if (not %condition) %unless_body)
|
parse [unless %condition %unless_body] as (if (not %condition) %unless_body)
|
||||||
compile [..]
|
compile [..]
|
||||||
if %condition %if_body else %else_body, unless %condition %else_body else %if_body
|
if %condition %if_body else %else_body, unless %condition %else_body else %if_body
|
||||||
@ -46,7 +44,6 @@ compile [..]
|
|||||||
test:
|
test:
|
||||||
assume ((1 if (yes) else 2) == 1)
|
assume ((1 if (yes) else 2) == 1)
|
||||||
assume ((1 if (no) else 2) == 2)
|
assume ((1 if (no) else 2) == 2)
|
||||||
|
|
||||||
compile [..]
|
compile [..]
|
||||||
%when_true_expr if %condition else %when_false_expr
|
%when_true_expr if %condition else %when_false_expr
|
||||||
%when_true_expr if %condition otherwise %when_false_expr
|
%when_true_expr if %condition otherwise %when_false_expr
|
||||||
@ -82,7 +79,6 @@ test:
|
|||||||
%i += 1
|
%i += 1
|
||||||
unless (%i == 10): go to %loop
|
unless (%i == 10): go to %loop
|
||||||
assume (%i == 10)
|
assume (%i == 10)
|
||||||
|
|
||||||
compile [=== %label ===, --- %label ---, *** %label ***] to (..)
|
compile [=== %label ===, --- %label ---, *** %label ***] to (..)
|
||||||
Lua "::label_\(%label as lua identifier)::"
|
Lua "::label_\(%label as lua identifier)::"
|
||||||
|
|
||||||
@ -112,7 +108,6 @@ test:
|
|||||||
barf "Failed to 'do next repeat'"
|
barf "Failed to 'do next repeat'"
|
||||||
|
|
||||||
assume (%x == 30)
|
assume (%x == 30)
|
||||||
|
|
||||||
compile [do next repeat] to (Lua "goto continue_repeat")
|
compile [do next repeat] to (Lua "goto continue_repeat")
|
||||||
compile [stop repeating] to (Lua "goto stop_repeat")
|
compile [stop repeating] to (Lua "goto stop_repeat")
|
||||||
compile [repeat while %condition %body] to:
|
compile [repeat while %condition %body] to:
|
||||||
@ -138,11 +133,11 @@ compile [repeat while %condition %body] to:
|
|||||||
|
|
||||||
parse [repeat %body] as (repeat while (yes) %body)
|
parse [repeat %body] as (repeat while (yes) %body)
|
||||||
parse [repeat until %condition %body] as (repeat while (not %condition) %body)
|
parse [repeat until %condition %body] as (repeat while (not %condition) %body)
|
||||||
|
|
||||||
test:
|
test:
|
||||||
%x = 0
|
%x = 0
|
||||||
repeat 10 times: %x += 1
|
repeat 10 times: %x += 1
|
||||||
assume (%x == 10)
|
assume (%x == 10)
|
||||||
|
|
||||||
compile [repeat %n times %body] to:
|
compile [repeat %n times %body] to:
|
||||||
%lua = (..)
|
%lua = (..)
|
||||||
Lua ".."
|
Lua ".."
|
||||||
@ -466,7 +461,6 @@ test:
|
|||||||
..and if it barfs: do nothing
|
..and if it barfs: do nothing
|
||||||
|
|
||||||
assume (%d.x == "good")
|
assume (%d.x == "good")
|
||||||
|
|
||||||
compile [do %action then always %final_action] to (..)
|
compile [do %action then always %final_action] to (..)
|
||||||
Lua ".."
|
Lua ".."
|
||||||
do
|
do
|
||||||
@ -485,6 +479,7 @@ test:
|
|||||||
|
|
||||||
# Inline thunk:
|
# Inline thunk:
|
||||||
compile [result of %body] to (Lua value "\(compile as ([] -> %body))()")
|
compile [result of %body] to (Lua value "\(compile as ([] -> %body))()")
|
||||||
|
|
||||||
test:
|
test:
|
||||||
%t = [1, [2, [[3], 4], 5, [[[6]]]]]
|
%t = [1, [2, [[3], 4], 5, [[[6]]]]]
|
||||||
%flat = []
|
%flat = []
|
||||||
|
@ -14,7 +14,6 @@ test:
|
|||||||
|
|
||||||
for % in coroutine %co: add % to %nums
|
for % in coroutine %co: add % to %nums
|
||||||
assume (%nums == [4, 5, 6, 6, 6]) or barf "Coroutine iteration failed"
|
assume (%nums == [4, 5, 6, 6, 6]) or barf "Coroutine iteration failed"
|
||||||
|
|
||||||
compile [coroutine %body, generator %body] to (..)
|
compile [coroutine %body, generator %body] to (..)
|
||||||
Lua value ".."
|
Lua value ".."
|
||||||
(function()
|
(function()
|
||||||
|
@ -14,7 +14,6 @@ test:
|
|||||||
math constants failed
|
math constants failed
|
||||||
%nan = (NaN)
|
%nan = (NaN)
|
||||||
assume (%nan != %nan) or barf "NaN failed"
|
assume (%nan != %nan) or barf "NaN failed"
|
||||||
|
|
||||||
compile [infinity, inf] to (Lua value "math.huge")
|
compile [infinity, inf] to (Lua value "math.huge")
|
||||||
compile [not a number, NaN, nan] to (Lua value "(0/0)")
|
compile [not a number, NaN, nan] to (Lua value "(0/0)")
|
||||||
compile [pi, Pi, PI] to (Lua value "math.pi")
|
compile [pi, Pi, PI] to (Lua value "math.pi")
|
||||||
@ -25,8 +24,8 @@ compile [e] to (Lua value "math.exp(1)")
|
|||||||
# Functions:
|
# Functions:
|
||||||
test:
|
test:
|
||||||
assume (("5" as a number) == 5)
|
assume (("5" as a number) == 5)
|
||||||
|
|
||||||
compile [% as a number, % as number] to (Lua value "tonumber(\(% as lua expr))")
|
compile [% as a number, % as number] to (Lua value "tonumber(\(% as lua expr))")
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume (..)
|
assume (..)
|
||||||
all of [..]
|
all of [..]
|
||||||
@ -34,7 +33,6 @@ test:
|
|||||||
arc tangent 5, arc tangent 5 / 10, hyperbolic sine 5, hyperbolic cosine 5
|
arc tangent 5, arc tangent 5 / 10, hyperbolic sine 5, hyperbolic cosine 5
|
||||||
hyperbolic tangent 5, e^ 5, ln 5, log base 2 of 5, floor 5, ceiling 5, round 5
|
hyperbolic tangent 5, e^ 5, ln 5, log base 2 of 5, floor 5, ceiling 5, round 5
|
||||||
..or barf "math functions failed"
|
..or barf "math functions failed"
|
||||||
|
|
||||||
compile [absolute value %, | % |, abs %] to (..)
|
compile [absolute value %, | % |, abs %] to (..)
|
||||||
Lua value "math.abs(\(% as lua expr))"
|
Lua value "math.abs(\(% as lua expr))"
|
||||||
|
|
||||||
@ -63,10 +61,10 @@ compile [log % base %base, log base %base of %] to (..)
|
|||||||
compile [floor %] to (Lua value "math.floor(\(% as lua expr))")
|
compile [floor %] to (Lua value "math.floor(\(% as lua expr))")
|
||||||
compile [ceiling %, ceil %] to (Lua value "math.ceil(\(% as lua expr))")
|
compile [ceiling %, ceil %] to (Lua value "math.ceil(\(% as lua expr))")
|
||||||
compile [round %, % rounded] to (Lua value "math.floor(\(% as lua expr) + .5)")
|
compile [round %, % rounded] to (Lua value "math.floor(\(% as lua expr) + .5)")
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((463 to the nearest 100) == 500) or barf "rounding failed"
|
assume ((463 to the nearest 100) == 500) or barf "rounding failed"
|
||||||
assume ((2.6 to the nearest 0.25) == 2.5) or barf "rounding failed"
|
assume ((2.6 to the nearest 0.25) == 2.5) or barf "rounding failed"
|
||||||
|
|
||||||
action [%n to the nearest %rounder] (..)
|
action [%n to the nearest %rounder] (..)
|
||||||
=lua "(\%rounder)*math.floor((\%n / \%rounder) + .5)"
|
=lua "(\%rounder)*math.floor((\%n / \%rounder) + .5)"
|
||||||
|
|
||||||
@ -107,7 +105,6 @@ compile [max of %items, biggest of %items, largest of %items, highest of %items]
|
|||||||
test:
|
test:
|
||||||
assume ((min of [3, -4, 1, 2] by % = (% * %)) == 1)
|
assume ((min of [3, -4, 1, 2] by % = (% * %)) == 1)
|
||||||
assume ((max of [3, -4, 1, 2] by % = (% * %)) == -4)
|
assume ((max of [3, -4, 1, 2] by % = (% * %)) == -4)
|
||||||
|
|
||||||
parse [min of %items by %item = %value_expr] as (..)
|
parse [min of %items by %item = %value_expr] as (..)
|
||||||
result of:
|
result of:
|
||||||
set {%best:nil, %best_key:nil}
|
set {%best:nil, %best_key:nil}
|
||||||
|
@ -32,11 +32,9 @@ lua> ".."
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
compile [five] to (Lua value "5")
|
compile [five] to (Lua value "5")
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((five) == 5) or barf "Compile to expression failed."
|
assume ((five) == 5) or barf "Compile to expression failed."
|
||||||
compile [loc x] to (Lua "local _x = 99;")
|
compile [loc x] to (Lua "local _x = 99;")
|
||||||
|
|
||||||
test:
|
test:
|
||||||
lua> "do"
|
lua> "do"
|
||||||
loc x
|
loc x
|
||||||
@ -46,11 +44,9 @@ test:
|
|||||||
compile [asdf] to:
|
compile [asdf] to:
|
||||||
%tmp = ""
|
%tmp = ""
|
||||||
return (Lua %tmp)
|
return (Lua %tmp)
|
||||||
|
|
||||||
test:
|
test:
|
||||||
asdf
|
asdf
|
||||||
assume (%tmp is (nil)) or barf "compile to is leaking variables"
|
assume (%tmp is (nil)) or barf "compile to is leaking variables"
|
||||||
|
|
||||||
lua> ".."
|
lua> ".."
|
||||||
nomsu.COMPILE_ACTIONS["compile % to %"] = function(nomsu, tree, \%actions, \%body)
|
nomsu.COMPILE_ACTIONS["compile % to %"] = function(nomsu, tree, \%actions, \%body)
|
||||||
local \%args = {"nomsu", "tree", unpack(table.map(\%actions[1]:get_args(), function(a) return tostring(nomsu:compile(\
|
local \%args = {"nomsu", "tree", unpack(table.map(\%actions[1]:get_args(), function(a) return tostring(nomsu:compile(\
|
||||||
@ -96,7 +92,6 @@ test:
|
|||||||
parse [baz %] as (foo %)
|
parse [baz %] as (foo %)
|
||||||
|
|
||||||
assume ((foo 1) == "outer")
|
assume ((foo 1) == "outer")
|
||||||
|
|
||||||
compile [local action %actions %body] to (..)
|
compile [local action %actions %body] to (..)
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local fn_name = "A"..string.as_lua_id(\%actions[1].stub)
|
local fn_name = "A"..string.as_lua_id(\%actions[1].stub)
|
||||||
@ -124,11 +119,9 @@ compile [local action %actions %body] to (..)
|
|||||||
test:
|
test:
|
||||||
action [baz1]: return "baz1"
|
action [baz1]: return "baz1"
|
||||||
action [baz2] "baz2"
|
action [baz2] "baz2"
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((baz1) == "baz1")
|
assume ((baz1) == "baz1")
|
||||||
assume ((baz2) == "baz2")
|
assume ((baz2) == "baz2")
|
||||||
|
|
||||||
compile [action %actions %body] to (..)
|
compile [action %actions %body] to (..)
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local lua = \(compile as (local action %actions %body))
|
local lua = \(compile as (local action %actions %body))
|
||||||
@ -137,15 +130,14 @@ compile [action %actions %body] to (..)
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((action (say %)) == (=lua "A_say_1"))
|
assume ((action (say %)) == (=lua "A_say_1"))
|
||||||
|
|
||||||
compile [action %action] to (Lua value (%action as lua id))
|
compile [action %action] to (Lua value (%action as lua id))
|
||||||
|
|
||||||
test:
|
test:
|
||||||
parse [swap %x and %y] as (..)
|
parse [swap %x and %y] as (..)
|
||||||
do:
|
do:
|
||||||
%tmp = %x
|
%tmp = %x
|
||||||
%x = %y
|
%x = %y
|
||||||
%y = %tmp
|
%y = %tmp
|
||||||
|
|
||||||
test:
|
test:
|
||||||
set {%1:1, %2:2}
|
set {%1:1, %2:2}
|
||||||
swap %1 and %2
|
swap %1 and %2
|
||||||
@ -155,7 +147,6 @@ test:
|
|||||||
swap %tmp and %tmp2
|
swap %tmp and %tmp2
|
||||||
assume ((%tmp == 2) and (%tmp2 == 1)) or barf ".."
|
assume ((%tmp == 2) and (%tmp2 == 1)) or barf ".."
|
||||||
'parse % as %' variable mangling failed.
|
'parse % as %' variable mangling failed.
|
||||||
|
|
||||||
compile [parse %actions as %body] to (..)
|
compile [parse %actions as %body] to (..)
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local replacements = {}
|
local replacements = {}
|
||||||
@ -207,7 +198,6 @@ compile [remove action %action] to (..)
|
|||||||
test:
|
test:
|
||||||
assume ("\(\(foo %x) as nomsu)" == "foo %x") or barf ".."
|
assume ("\(\(foo %x) as nomsu)" == "foo %x") or barf ".."
|
||||||
action source code failed.
|
action source code failed.
|
||||||
|
|
||||||
compile [%tree as nomsu] to (..)
|
compile [%tree as nomsu] to (..)
|
||||||
Lua value "nomsu:tree_to_nomsu(\(%tree as lua expr))"
|
Lua value "nomsu:tree_to_nomsu(\(%tree as lua expr))"
|
||||||
|
|
||||||
@ -276,18 +266,16 @@ test:
|
|||||||
one
|
one
|
||||||
"two"
|
"two"
|
||||||
..== "\"one\\n\\\"two\\\"\""
|
..== "\"one\\n\\\"two\\\"\""
|
||||||
|
|
||||||
compile [quote %s] to (Lua value "repr(\(%s as lua expr))")
|
compile [quote %s] to (Lua value "repr(\(%s as lua expr))")
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((type of {}) == "table") or barf "type of failed."
|
assume ((type of {}) == "table") or barf "type of failed."
|
||||||
|
|
||||||
compile [type of %obj] to (Lua value "type(\(%obj as lua expr))")
|
compile [type of %obj] to (Lua value "type(\(%obj as lua expr))")
|
||||||
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((parse "foo %") == \(foo %))
|
assume ((parse "foo %") == \(foo %))
|
||||||
|
|
||||||
compile [parse %text] to (Lua value "nomsu:parse(\(%text as lua expr))")
|
compile [parse %text] to (Lua value "nomsu:parse(\(%text as lua expr))")
|
||||||
compile [parse %text from %filename] to (..)
|
compile [parse %text from %filename] to (..)
|
||||||
Lua value ".."
|
Lua value ".."
|
||||||
@ -301,7 +289,6 @@ test:
|
|||||||
run \:
|
run \:
|
||||||
external %passed = (yes)
|
external %passed = (yes)
|
||||||
assume %passed
|
assume %passed
|
||||||
|
|
||||||
compile [run %nomsu_code] to (..)
|
compile [run %nomsu_code] to (..)
|
||||||
Lua value ".."
|
Lua value ".."
|
||||||
nomsu:run(\(%nomsu_code as lua expr), \(..)
|
nomsu:run(\(%nomsu_code as lua expr), \(..)
|
||||||
@ -310,7 +297,6 @@ compile [run %nomsu_code] to (..)
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((\(5 + 5) as value) == 10) or barf "%tree as value failed."
|
assume ((\(5 + 5) as value) == 10) or barf "%tree as value failed."
|
||||||
|
|
||||||
action [run tree %tree, %tree as value] (lua> "return nomsu:run(\%tree)")
|
action [run tree %tree, %tree as value] (lua> "return nomsu:run(\%tree)")
|
||||||
compile [compile %block, compiled %block, %block compiled] to (..)
|
compile [compile %block, compiled %block, %block compiled] to (..)
|
||||||
Lua value "nomsu:compile(\(%block as lua))"
|
Lua value "nomsu:compile(\(%block as lua))"
|
||||||
|
@ -22,7 +22,6 @@ compile [%a isn't %b, %a is not %b, %a not= %b, %a != %b] to (..)
|
|||||||
# For strict identity checking, use (%x's id) is (%y's id)
|
# For strict identity checking, use (%x's id) is (%y's id)
|
||||||
test:
|
test:
|
||||||
assume (([] == []) and (([]'s id) != ([]'s id)))
|
assume (([] == []) and (([]'s id) != ([]'s id)))
|
||||||
|
|
||||||
lua> ".."
|
lua> ".."
|
||||||
do
|
do
|
||||||
local new_uuid = require('uuid')
|
local new_uuid = require('uuid')
|
||||||
@ -117,7 +116,6 @@ test:
|
|||||||
|
|
||||||
set global x local y
|
set global x local y
|
||||||
assume ((%foozle == "inner") and (%y == "outer")) or barf "external failed."
|
assume ((%foozle == "inner") and (%y == "outer")) or barf "external failed."
|
||||||
|
|
||||||
compile [external %var = %value] to:
|
compile [external %var = %value] to:
|
||||||
%var_lua = (%var as lua)
|
%var_lua = (%var as lua)
|
||||||
assume %var_lua.is_value or barf "Invalid target for assignment: \%var"
|
assume %var_lua.is_value or barf "Invalid target for assignment: \%var"
|
||||||
@ -135,7 +133,6 @@ test:
|
|||||||
set global x local y
|
set global x local y
|
||||||
assume ((%foozle == "inner") and (%y == "outer")) or barf ".."
|
assume ((%foozle == "inner") and (%y == "outer")) or barf ".."
|
||||||
'with external' failed.
|
'with external' failed.
|
||||||
|
|
||||||
compile [with external %externs %body] to:
|
compile [with external %externs %body] to:
|
||||||
%body_lua = (%body as lua statements)
|
%body_lua = (%body as lua statements)
|
||||||
lua> ".."
|
lua> ".."
|
||||||
@ -151,7 +148,6 @@ test:
|
|||||||
|
|
||||||
assume (%x == 1) or barf "'with' scoping failed"
|
assume (%x == 1) or barf "'with' scoping failed"
|
||||||
assume (%z == (nil)) or barf "'with' scoping failed"
|
assume (%z == (nil)) or barf "'with' scoping failed"
|
||||||
|
|
||||||
compile [with %assignments %body] to:
|
compile [with %assignments %body] to:
|
||||||
%lua = (%body as lua statements)
|
%lua = (%body as lua statements)
|
||||||
lua> ".."
|
lua> ".."
|
||||||
@ -189,7 +185,6 @@ compile [with %assignments %body] to:
|
|||||||
# Math Operators
|
# Math Operators
|
||||||
test:
|
test:
|
||||||
assume ((5 wrapped around 2) == 1) or barf "mod not working"
|
assume ((5 wrapped around 2) == 1) or barf "mod not working"
|
||||||
|
|
||||||
compile [%x wrapped around %y, %x mod %y] to (..)
|
compile [%x wrapped around %y, %x mod %y] to (..)
|
||||||
Lua value "(\(%x as lua expr) % \(%y as lua expr))"
|
Lua value "(\(%x as lua expr) % \(%y as lua expr))"
|
||||||
|
|
||||||
@ -204,7 +199,6 @@ test:
|
|||||||
assume (0 <= (one) <= 2) or barf "Three-way chained comparison failed."
|
assume (0 <= (one) <= 2) or barf "Three-way chained comparison failed."
|
||||||
assume (%calls == 1) or barf ".."
|
assume (%calls == 1) or barf ".."
|
||||||
Three-way comparison evaluated middle value multiple times
|
Three-way comparison evaluated middle value multiple times
|
||||||
|
|
||||||
parse [%x < %y < %z] as (..)
|
parse [%x < %y < %z] as (..)
|
||||||
call ([%a, %b, %c] -> ((%a < %b) and (%b < %c))) with [%x, %y, %z]
|
call ([%a, %b, %c] -> ((%a < %b) and (%b < %c))) with [%x, %y, %z]
|
||||||
|
|
||||||
@ -236,7 +230,6 @@ test:
|
|||||||
assume (((no) and (barfer)) == (no))
|
assume (((no) and (barfer)) == (no))
|
||||||
assume ((no) or (yes))
|
assume ((no) or (yes))
|
||||||
assume ((yes) or (barfer))
|
assume ((yes) or (barfer))
|
||||||
|
|
||||||
compile [%x and %y] to (Lua value "(\(%x as lua expr) and \(%y as lua expr))")
|
compile [%x and %y] to (Lua value "(\(%x as lua expr) and \(%y as lua expr))")
|
||||||
compile [%x or %y] to (Lua value "(\(%x as lua expr) or \(%y as lua expr))")
|
compile [%x or %y] to (Lua value "(\(%x as lua expr) or \(%y as lua expr))")
|
||||||
|
|
||||||
@ -292,12 +285,11 @@ compile [%x ARSHIFT %shift, %x >> %shift] to (..)
|
|||||||
test:
|
test:
|
||||||
assume ((- 5) == -5)
|
assume ((- 5) == -5)
|
||||||
assume ((not (yes)) == (no))
|
assume ((not (yes)) == (no))
|
||||||
|
|
||||||
compile [- %] to (Lua value "(- \(% as lua expr))")
|
compile [- %] to (Lua value "(- \(% as lua expr))")
|
||||||
compile [not %] to (Lua value "(not \(% as lua expr))")
|
compile [not %] to (Lua value "(not \(% as lua expr))")
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((length of [1, 2, 3]) == 3)
|
assume ((length of [1, 2, 3]) == 3)
|
||||||
|
|
||||||
compile [length of %list, len %list, || %list ||] to (..)
|
compile [length of %list, len %list, || %list ||] to (..)
|
||||||
Lua value "(#\(%list as lua expr))"
|
Lua value "(#\(%list as lua expr))"
|
||||||
|
|
||||||
@ -314,7 +306,6 @@ test:
|
|||||||
assume (%x == 4) or barf "*= failed"
|
assume (%x == 4) or barf "*= failed"
|
||||||
wrap %x around 3
|
wrap %x around 3
|
||||||
assume (%x == 1) or barf "wrap around failed"
|
assume (%x == 1) or barf "wrap around failed"
|
||||||
|
|
||||||
parse [%var += %] as (%var = (%var + %))
|
parse [%var += %] as (%var = (%var + %))
|
||||||
parse [%var -= %] as (%var = (%var - %))
|
parse [%var -= %] as (%var = (%var - %))
|
||||||
parse [%var *= %] as (%var = (%var * %))
|
parse [%var *= %] as (%var = (%var * %))
|
||||||
|
@ -20,7 +20,6 @@ test:
|
|||||||
assume ((foo) == "inner foo")
|
assume ((foo) == "inner foo")
|
||||||
|
|
||||||
assume ((foo) == "outer foo")
|
assume ((foo) == "outer foo")
|
||||||
|
|
||||||
compile [with local %locals %body, with local %locals do %body] to:
|
compile [with local %locals %body, with local %locals do %body] to:
|
||||||
%body_lua = (%body as lua statements)
|
%body_lua = (%body as lua statements)
|
||||||
if %locals.type is:
|
if %locals.type is:
|
||||||
|
@ -21,7 +21,6 @@ test:
|
|||||||
..gap
|
..gap
|
||||||
..== "nogap"
|
..== "nogap"
|
||||||
parse [アクション %spec %body] as (action %spec %body)
|
parse [アクション %spec %body] as (action %spec %body)
|
||||||
|
|
||||||
test:
|
test:
|
||||||
%こんにちは = "こんにちは"
|
%こんにちは = "こんにちは"
|
||||||
アクション [% と言う] "\(%)世界"
|
アクション [% と言う] "\(%)世界"
|
||||||
@ -32,7 +31,6 @@ test:
|
|||||||
test:
|
test:
|
||||||
assume ((["x", "y"] joined with ",") == "x,y") or barf "joined with failed"
|
assume ((["x", "y"] joined with ",") == "x,y") or barf "joined with failed"
|
||||||
assume ((["x", "y"] joined) == "xy") or barf "joined failed"
|
assume ((["x", "y"] joined) == "xy") or barf "joined failed"
|
||||||
|
|
||||||
action [%texts joined with %glue] (..)
|
action [%texts joined with %glue] (..)
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local text_bits = {}
|
local text_bits = {}
|
||||||
@ -40,15 +38,16 @@ action [%texts joined with %glue] (..)
|
|||||||
return table.concat(text_bits, \%glue)
|
return table.concat(text_bits, \%glue)
|
||||||
|
|
||||||
parse [joined %texts, %texts joined] as (%texts joined with "")
|
parse [joined %texts, %texts joined] as (%texts joined with "")
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((byte 2 of "BAR") == 65)
|
assume ((byte 2 of "BAR") == 65)
|
||||||
assume ((bytes 1 to 2 of "BAR") == [66, 65])
|
assume ((bytes 1 to 2 of "BAR") == [66, 65])
|
||||||
|
|
||||||
compile [byte %i of %text] to (..)
|
compile [byte %i of %text] to (..)
|
||||||
Lua value "(\(%text as lua expr)):byte(\(%i as lua expr))"
|
Lua value "(\(%text as lua expr)):byte(\(%i as lua expr))"
|
||||||
|
|
||||||
compile [bytes %start to %stop of %text] to (..)
|
compile [bytes %start to %stop of %text] to (..)
|
||||||
Lua value "list{(\(%text as lua expr)):byte(\(%start as lua expr), \(%stop as lua expr))}"
|
Lua value ".."
|
||||||
|
list{(\(%text as lua expr)):byte(\(%start as lua expr), \(%stop as lua expr))}
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume (("asdf" capitalized) == "Asdf")
|
assume (("asdf" capitalized) == "Asdf")
|
||||||
@ -63,7 +62,6 @@ compile [uppercase %text, %text uppercase] to (..)
|
|||||||
test:
|
test:
|
||||||
assume (("asdf" with "X" instead of "s") == "aXdf") or barf ".."
|
assume (("asdf" with "X" instead of "s") == "aXdf") or barf ".."
|
||||||
substitution failed
|
substitution failed
|
||||||
|
|
||||||
compile [..]
|
compile [..]
|
||||||
%text with %sub instead of %patt, %text with %patt replaced by %sub
|
%text with %sub instead of %patt, %text with %patt replaced by %sub
|
||||||
%text s/ %patt / %sub
|
%text s/ %patt / %sub
|
||||||
@ -78,7 +76,6 @@ test:
|
|||||||
one
|
one
|
||||||
two
|
two
|
||||||
..== ["one", "two"]
|
..== ["one", "two"]
|
||||||
|
|
||||||
action [lines in %text, lines of %text] (..)
|
action [lines in %text, lines of %text] (..)
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local result = list{}
|
local result = list{}
|
||||||
@ -99,7 +96,9 @@ compile [%expr for %match in %text matching %patt] to (..)
|
|||||||
Lua value ".."
|
Lua value ".."
|
||||||
(function()
|
(function()
|
||||||
local ret = list{}
|
local ret = list{}
|
||||||
for \(%match as lua expr) in (\(%text as lua expr)):gmatch(\(%patt as lua expr)) do
|
for \(%match as lua expr) in (\(%text as lua expr)):gmatch(\(..)
|
||||||
|
%patt as lua expr
|
||||||
|
..) do
|
||||||
ret[#ret+1] = \(%expr as lua statements)
|
ret[#ret+1] = \(%expr as lua statements)
|
||||||
end
|
end
|
||||||
return ret
|
return ret
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
%b64_str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
|
%b64_str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
|
||||||
%reverse_b64 = (%b64_str.%i = (%i - 1) for %i in 1 to (length of %b64_str))
|
%reverse_b64 = (%b64_str.%i = (%i - 1) for %i in 1 to (length of %b64_str))
|
||||||
%reverse_b64."=" = 0
|
%reverse_b64."=" = 0
|
||||||
|
|
||||||
test:
|
test:
|
||||||
%cases = ["", "Zg==", "Zm8=", "Zm9v", "Zm9vYg==", "Zm9vYmE=", "Zm9vYmFy"]
|
%cases = ["", "Zg==", "Zm8=", "Zm9v", "Zm9vYg==", "Zm9vYmE=", "Zm9vYmFy"]
|
||||||
for %len = %encoded in %cases:
|
for %len = %encoded in %cases:
|
||||||
@ -16,7 +17,6 @@ test:
|
|||||||
assume ((base64 decode %encoded) == %plain) or barf ".."
|
assume ((base64 decode %encoded) == %plain) or barf ".."
|
||||||
\(quote %encoded) base64 decoded to \(quote (base64 decode %encoded)) \
|
\(quote %encoded) base64 decoded to \(quote (base64 decode %encoded)) \
|
||||||
..instead of \(quote %plain)
|
..instead of \(quote %plain)
|
||||||
|
|
||||||
action [base64 %str, base64 encode %str, %str base64]:
|
action [base64 %str, base64 encode %str, %str base64]:
|
||||||
%chars = []
|
%chars = []
|
||||||
for %i in 1 to (length of %str) via 3:
|
for %i in 1 to (length of %str) via 3:
|
||||||
@ -46,9 +46,9 @@ action [decode base64 %str, %str base64 decoded, base64 decode %str]:
|
|||||||
for %i in 1 to (length of %str) via 4:
|
for %i in 1 to (length of %str) via 4:
|
||||||
%indices = (%reverse_b64.(%str.%) for % in %i to (%i + 3))
|
%indices = (%reverse_b64.(%str.%) for % in %i to (%i + 3))
|
||||||
add (chr ((%indices.1 << 2) + ((%indices.2 & 48) >> 4))) to %chars
|
add (chr ((%indices.1 << 2) + ((%indices.2 & 48) >> 4))) to %chars
|
||||||
if (%str.(%i+2) == "="): stop
|
if (%str.(%i + 2) == "="): stop
|
||||||
add (chr (((%indices.2 & 15) << 4) + ((%indices.3 & 60) >> 2))) to %chars
|
add (chr (((%indices.2 & 15) << 4) + ((%indices.3 & 60) >> 2))) to %chars
|
||||||
if (%str.(%i+3) == "="): stop
|
if (%str.(%i + 3) == "="): stop
|
||||||
add (chr (((%indices.3 & 3) << 6) + %indices.4)) to %chars
|
add (chr (((%indices.3 & 3) << 6) + %indices.4)) to %chars
|
||||||
|
|
||||||
return (%chars joined)
|
return (%chars joined)
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
bright "\(green)Color test passed."
|
bright "\(green)Color test passed."
|
||||||
|
|
||||||
%colors = {..}
|
%colors = {..}
|
||||||
normal:0, "reset color":0, bright:1, bold:1, dim:2, italic:3, underscore:4
|
normal:0, "reset color":0, bright:1, bold:1, dim:2, italic:3, underscore:4
|
||||||
"slow blink":5, "fast blink":6, reverse:7, inverse:7, inverted:7, hidden:8
|
"slow blink":5, "fast blink":6, reverse:7, inverse:7, inverted:7, hidden:8
|
||||||
|
@ -9,7 +9,6 @@ use "lib/base64.nom"
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((hash "hello world") == "Kq5sNclPz7QV2+lfQIuc6R7oRu0=")
|
assume ((hash "hello world") == "Kq5sNclPz7QV2+lfQIuc6R7oRu0=")
|
||||||
|
|
||||||
action [hash %, sha1 %]:
|
action [hash %, sha1 %]:
|
||||||
%hash = (=lua "\%hashlib.new('sha1'):final(\%)")
|
%hash = (=lua "\%hashlib.new('sha1'):final(\%)")
|
||||||
return (base64 %hash)
|
return (base64 %hash)
|
||||||
@ -18,7 +17,6 @@ action [file with hash %hash]:
|
|||||||
for file %filename in ".":
|
for file %filename in ".":
|
||||||
%contents = (read file %filename)
|
%contents = (read file %filename)
|
||||||
%file_hash = (hash %contents)
|
%file_hash = (hash %contents)
|
||||||
if (%file_hash == %hash):
|
if (%file_hash == %hash): return %filename
|
||||||
return %filename
|
|
||||||
|
|
||||||
parse [hash of file %filename] as (sha1 (read file %filename))
|
parse [hash of file %filename] as (sha1 (read file %filename))
|
||||||
|
@ -42,7 +42,6 @@ test:
|
|||||||
assume ((sploot) == "splooted") or barf "subclass method failed"
|
assume ((sploot) == "splooted") or barf "subclass method failed"
|
||||||
assume ((bark) == "Bark!") or barf "inheritance failed"
|
assume ((bark) == "Bark!") or barf "inheritance failed"
|
||||||
assume ((woof) == "Bark!")
|
assume ((woof) == "Bark!")
|
||||||
|
|
||||||
compile [@, me] to (Lua value "self")
|
compile [@, me] to (Lua value "self")
|
||||||
compile [method %actions %body] to:
|
compile [method %actions %body] to:
|
||||||
%lua = (compile as (local action %actions %body))
|
%lua = (compile as (local action %actions %body))
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
path of Nomsu file "lib/os.nom"
|
path of Nomsu file "lib/os.nom"
|
||||||
|
|
||||||
action [path of Nomsu file %filename]:
|
action [path of Nomsu file %filename]:
|
||||||
lua> "for i,f in Files.walk(\%filename) do return f end"
|
lua> "for i,f in Files.walk(\%filename) do return f end"
|
||||||
barf "Could not find file: \%filename"
|
barf "Could not find file: \%filename"
|
||||||
@ -18,11 +17,10 @@ action [sh> %cmd]:
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
read file "lib/os.nom"
|
read file "lib/os.nom"
|
||||||
|
|
||||||
action [read file %filename] (=lua "Files.read(\%filename)")
|
action [read file %filename] (=lua "Files.read(\%filename)")
|
||||||
|
|
||||||
test:
|
test:
|
||||||
for file %f in "core": do nothing
|
for file %f in "core": do nothing
|
||||||
|
|
||||||
compile [for file %f in %path %body] to (..)
|
compile [for file %f in %path %body] to (..)
|
||||||
Lua ".."
|
Lua ".."
|
||||||
for i,\(%f as lua expr) in Files.walk(\(%path as lua expr)) do
|
for i,\(%f as lua expr) in Files.walk(\(%path as lua expr)) do
|
||||||
@ -52,16 +50,14 @@ action [..]
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((line number of 3 in "x\ny") == 2)
|
assume ((line number of 3 in "x\ny") == 2)
|
||||||
|
|
||||||
action [line number of %pos in %str] (=lua "Files.get_line_number(\%str, \%pos)")
|
action [line number of %pos in %str] (=lua "Files.get_line_number(\%str, \%pos)")
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((line 2 in "one\ntwo\nthree") == "two")
|
assume ((line 2 in "one\ntwo\nthree") == "two")
|
||||||
|
|
||||||
action [line %line_num in %str] (=lua "Files.get_line(\%str, \%line_num)")
|
action [line %line_num in %str] (=lua "Files.get_line(\%str, \%line_num)")
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume (source lines of \(this))
|
assume (source lines of \(this))
|
||||||
|
|
||||||
action [source lines of %tree]:
|
action [source lines of %tree]:
|
||||||
%source = (%tree.source if (%tree is syntax tree) else %tree)
|
%source = (%tree.source if (%tree is syntax tree) else %tree)
|
||||||
%file = (read file %source.filename)
|
%file = (read file %source.filename)
|
||||||
|
@ -1045,8 +1045,25 @@ do
|
|||||||
end
|
end
|
||||||
local _exp_0 = tree.type
|
local _exp_0 = tree.type
|
||||||
if "FileChunks" == _exp_0 then
|
if "FileChunks" == _exp_0 then
|
||||||
local setup = nil
|
|
||||||
local nomsu = NomsuCode(tree.source, pop_comments(tree.source.start))
|
local nomsu = NomsuCode(tree.source, pop_comments(tree.source.start))
|
||||||
|
local should_clump
|
||||||
|
should_clump = function(prev_line, line)
|
||||||
|
if prev_line and prev_line.type == "Action" and line.type == "Action" then
|
||||||
|
if prev_line.stub == "use %" then
|
||||||
|
return line.stub == "use %"
|
||||||
|
end
|
||||||
|
if prev_line.stub == "test %" then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
if line.stub == "test %" then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
if recurse(prev_line):is_multiline() then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return true
|
||||||
|
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
|
||||||
nomsu:append("\n\n" .. tostring(("~"):rep(80)) .. "\n\n")
|
nomsu:append("\n\n" .. tostring(("~"):rep(80)) .. "\n\n")
|
||||||
@ -1054,24 +1071,19 @@ do
|
|||||||
nomsu:append(pop_comments(chunk.source.start))
|
nomsu:append(pop_comments(chunk.source.start))
|
||||||
if chunk.type == "Block" then
|
if chunk.type == "Block" then
|
||||||
for line_no, line in ipairs(chunk) do
|
for line_no, line in ipairs(chunk) do
|
||||||
if setup == nil then
|
if line_no > 1 then
|
||||||
setup = line.type == "Action" and line.stub == "use %"
|
if should_clump(chunk[line_no - 1], line) then
|
||||||
elseif setup and not (line.type == "Action" and line.stub == "use %") then
|
nomsu:append("\n", pop_comments(line.source.start, '\n'))
|
||||||
nomsu:append("\n", pop_comments(line.source.start))
|
else
|
||||||
setup = false
|
nomsu:append("\n\n", pop_comments(line.source.start))
|
||||||
end
|
end
|
||||||
nomsu:append(pop_comments(line.source.start, tostring(nomsu):match("\n\n$") and "" or "\n"))
|
|
||||||
local line_nomsu = self:tree_to_nomsu(line, pop_comments)
|
|
||||||
nomsu:append(line_nomsu)
|
|
||||||
if line_no < #chunk then
|
|
||||||
nomsu:append(line_nomsu:is_multiline() and "\n\n" or "\n")
|
|
||||||
end
|
end
|
||||||
|
nomsu:append(self:tree_to_nomsu(line, pop_comments))
|
||||||
end
|
end
|
||||||
nomsu:append(pop_comments(chunk.source.stop, '\n'))
|
nomsu:append(pop_comments(chunk.source.stop, '\n'))
|
||||||
else
|
else
|
||||||
nomsu:append(recurse(chunk))
|
nomsu:append(recurse(chunk))
|
||||||
end
|
end
|
||||||
setup = false
|
|
||||||
end
|
end
|
||||||
nomsu:append(pop_comments(tree.source.stop, '\n'))
|
nomsu:append(pop_comments(tree.source.stop, '\n'))
|
||||||
if not (tostring(nomsu):match("\n$")) then
|
if not (tostring(nomsu):match("\n$")) then
|
||||||
|
@ -648,26 +648,28 @@ with NomsuCompiler
|
|||||||
|
|
||||||
switch tree.type
|
switch tree.type
|
||||||
when "FileChunks"
|
when "FileChunks"
|
||||||
setup = nil
|
|
||||||
nomsu = NomsuCode(tree.source, pop_comments(tree.source.start))
|
nomsu = NomsuCode(tree.source, pop_comments(tree.source.start))
|
||||||
|
should_clump = (prev_line, line)->
|
||||||
|
if prev_line and prev_line.type == "Action" and line.type == "Action"
|
||||||
|
if prev_line.stub == "use %" then return line.stub == "use %"
|
||||||
|
if prev_line.stub == "test %" then return true
|
||||||
|
if line.stub == "test %" then return false
|
||||||
|
return false if recurse(prev_line)\is_multiline!
|
||||||
|
return true
|
||||||
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
|
||||||
nomsu\append pop_comments(chunk.source.start)
|
nomsu\append pop_comments(chunk.source.start)
|
||||||
if chunk.type == "Block"
|
if chunk.type == "Block"
|
||||||
for line_no, line in ipairs chunk
|
for line_no, line in ipairs chunk
|
||||||
if setup == nil
|
if line_no > 1
|
||||||
setup = line.type == "Action" and line.stub == "use %"
|
if should_clump(chunk[line_no-1], line)
|
||||||
elseif setup and not (line.type == "Action" and line.stub == "use %")
|
nomsu\append "\n", pop_comments(line.source.start, '\n')
|
||||||
nomsu\append "\n", pop_comments(line.source.start)
|
else
|
||||||
setup = false
|
nomsu\append "\n\n", pop_comments(line.source.start)
|
||||||
nomsu\append pop_comments(line.source.start, tostring(nomsu)\match("\n\n$") and "" or "\n")
|
nomsu\append @tree_to_nomsu(line, pop_comments)
|
||||||
line_nomsu = @tree_to_nomsu(line, pop_comments)
|
|
||||||
nomsu\append line_nomsu
|
|
||||||
nomsu\append(line_nomsu\is_multiline! and "\n\n" or "\n") if line_no < #chunk
|
|
||||||
nomsu\append pop_comments(chunk.source.stop, '\n')
|
nomsu\append pop_comments(chunk.source.stop, '\n')
|
||||||
else
|
else
|
||||||
nomsu\append recurse(chunk)
|
nomsu\append recurse(chunk)
|
||||||
setup = false
|
|
||||||
nomsu\append pop_comments(tree.source.stop, '\n')
|
nomsu\append pop_comments(tree.source.stop, '\n')
|
||||||
nomsu\append('\n') unless tostring(nomsu)\match("\n$")
|
nomsu\append('\n') unless tostring(nomsu)\match("\n$")
|
||||||
return nomsu
|
return nomsu
|
||||||
|
@ -16,9 +16,7 @@ for %path in (command line args):
|
|||||||
for file %filename in %path:
|
for file %filename in %path:
|
||||||
if (%filename matches "%.nom$"): use %filename
|
if (%filename matches "%.nom$"): use %filename
|
||||||
|
|
||||||
for %path in (command line args):
|
for %path in (command line args): use %path
|
||||||
use %path
|
|
||||||
|
|
||||||
%tests = ((=lua "Source:from_string(\%s)") = %t for %s = %t in (tests))
|
%tests = ((=lua "Source:from_string(\%s)") = %t for %s = %t in (tests))
|
||||||
for %path in (command line args):
|
for %path in (command line args):
|
||||||
for file %filename in %path:
|
for file %filename in %path:
|
||||||
@ -27,7 +25,7 @@ for %path in (command line args):
|
|||||||
for %src = %test in %tests:
|
for %src = %test in %tests:
|
||||||
if (%src.filename == %filename):
|
if (%src.filename == %filename):
|
||||||
add {test:%test, source:%src} to %file_tests
|
add {test:%test, source:%src} to %file_tests
|
||||||
|
|
||||||
unless (%file_tests is empty):
|
unless (%file_tests is empty):
|
||||||
sort %file_tests by % -> %.source
|
sort %file_tests by % -> %.source
|
||||||
lua> "io.write('[ .. ] ', \%filename); io.flush()"
|
lua> "io.write('[ .. ] ', \%filename); io.flush()"
|
||||||
|
Loading…
Reference in New Issue
Block a user