Auto-upgraded to 3.7
This commit is contained in:
parent
ba00294bad
commit
18126da9c5
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file defines upgrades from Nomsu <2.3 to Nomsu 2.3
|
This file defines upgrades from Nomsu <2.3 to Nomsu 2.3
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file defines upgrades from Nomsu <2.4 to Nomsu 2.4
|
This file defines upgrades from Nomsu <2.4 to Nomsu 2.4
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
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
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file defines upgrades from Nomsu <2.5 to Nomsu 2.5
|
This file defines upgrades from Nomsu <2.5 to Nomsu 2.5
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file defines upgrades from Nomsu 1 to Nomsu 2
|
This file defines upgrades from Nomsu 1 to Nomsu 2
|
||||||
|
|
||||||
@ -26,8 +26,8 @@ upgrade %tree to "2" as:
|
|||||||
for %n in %need_blocks:
|
for %n in %need_blocks:
|
||||||
if (%tree.stub is %n):
|
if (%tree.stub is %n):
|
||||||
%bits = (((% upgraded) if (% is syntax tree) else %) for % in %tree)
|
%bits = (((% upgraded) if (% is syntax tree) else %) for % in %tree)
|
||||||
unless ((last in %bits) is "Block" syntax tree):
|
unless ((%bits::last) is "Block" syntax tree):
|
||||||
%body = (last in %bits)
|
%body = (%bits::last)
|
||||||
%bits.(length of %bits) = (=lua "Block(\%body.source, \%body)")
|
%bits.(size of %bits) = (=lua "Block(\%body.source, \%body)")
|
||||||
|
|
||||||
return (=lua "Action(\%tree.source, unpack(\%bits))")
|
return (=lua "Action(\%tree.source, unpack(\%bits))")
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
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
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.7
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file defines upgrades from Nomsu <3.6 to 3.6
|
This file defines upgrades from Nomsu <3.6 to 3.6
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.7
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file defines upgrades from Nomsu <3.7 to 3.7
|
This file defines upgrades from Nomsu <3.7 to 3.7
|
||||||
|
|
||||||
@ -10,15 +10,17 @@ upgrade action [%index rd to last in %list] to "3.7" as (%list::%index rd to las
|
|||||||
upgrade action [%index th to last in %list] to "3.7" as (%list::%index rd th last)
|
upgrade action [%index th to last in %list] to "3.7" as (%list::%index rd th last)
|
||||||
upgrade action [last in %list] to "3.7" as (%list::last)
|
upgrade action [last in %list] to "3.7" as (%list::last)
|
||||||
upgrade action [first in %list] to "3.7" as (%list::first)
|
upgrade action [first in %list] to "3.7" as (%list::first)
|
||||||
upgrade action [%item is in %list, %list contains %item, %list has %item] to "3.7" as (..)
|
upgrade action [%item is in %list, %list contains %item, %list has %item]
|
||||||
%list::has %item
|
..to "3.7" as (%list::has %item)
|
||||||
|
|
||||||
upgrade action [..]
|
upgrade 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
|
||||||
..to "3.7" as (not (%list::has %item))
|
..to "3.7" as (not (%list::has %item))
|
||||||
|
|
||||||
upgrade action [%list has key %index, %list has index %index] to "3.7" as (%list.%index != (nil))
|
upgrade action [%list has key %index, %list has index %index] to "3.7" as (..)
|
||||||
|
%list.%index != (nil)
|
||||||
|
|
||||||
upgrade action [..]
|
upgrade action [..]
|
||||||
%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
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file defines upgrades from Nomsu <=2 to Nomsu 3
|
This file defines upgrades from Nomsu <=2 to Nomsu 3
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.7
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file contains code for defining ways to upgrade code between different versions
|
This file contains code for defining ways to upgrade code between different versions
|
||||||
of Nomsu.
|
of Nomsu.
|
||||||
@ -45,11 +45,11 @@ compile [upgrade action %actions to %version as %body] to:
|
|||||||
if ((type of %k) == "number"):
|
if ((type of %k) == "number"):
|
||||||
%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 "\(%t.type){\(%args joined with ", ")}"
|
return "\(%t.type){\(%args joined with ", ")}"
|
||||||
|
|
||||||
else:
|
else: return (quote %t)
|
||||||
return (quote %t)
|
|
||||||
|
|
||||||
unless ("\%lua" == ""): %lua::append "\n"
|
unless ("\%lua" == ""): %lua::append "\n"
|
||||||
%retval = (make tree %body)
|
%retval = (make tree %body)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
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.
|
||||||
@ -11,10 +11,12 @@ use "core/operators.nom"
|
|||||||
test:
|
test:
|
||||||
%list = [1, 2, 3, 4, 5]
|
%list = [1, 2, 3, 4, 5]
|
||||||
%visited = {}
|
%visited = {}
|
||||||
for %i = %x in %list: %visited.%i = (yes)
|
for %i = %x in %list:
|
||||||
|
%visited.%i = (yes)
|
||||||
assume (%visited == {1:yes, 2:yes, 3:yes, 4:yes, 5:yes})
|
assume (%visited == {1:yes, 2:yes, 3:yes, 4:yes, 5:yes})
|
||||||
%visited = {}
|
%visited = {}
|
||||||
for %x in %list: %visited.%x = (yes)
|
for %x in %list:
|
||||||
|
%visited.%x = (yes)
|
||||||
assume (%visited == {1:yes, 2:yes, 3:yes, 4:yes, 5:yes})
|
assume (%visited == {1:yes, 2:yes, 3:yes, 4:yes, 5:yes})
|
||||||
assume ((%list::2 nd to last) == 4)
|
assume ((%list::2 nd to last) == 4)
|
||||||
assume ((%list::first) == 1)
|
assume ((%list::first) == 1)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file contains compile-time actions that define basic control flow structures
|
This file contains compile-time actions that define basic control flow structures
|
||||||
like "if" statements and loops.
|
like "if" statements and loops.
|
||||||
@ -300,7 +300,7 @@ compile [..]
|
|||||||
%stop_labels::append "\n\(compile as (===stop %key ===))"
|
%stop_labels::append "\n\(compile as (===stop %key ===))"
|
||||||
if (%body has subtree \(stop %value)):
|
if (%body has subtree \(stop %value)):
|
||||||
%stop_labels::append "\n\(compile as (===stop %value ===))"
|
%stop_labels::append "\n\(compile as (===stop %value ===))"
|
||||||
if ((length of "\%stop_labels") > 0):
|
if ((size of "\%stop_labels") > 0):
|
||||||
%lua = (..)
|
%lua = (..)
|
||||||
Lua ".."
|
Lua ".."
|
||||||
do -- scope for stopping for % = % loop
|
do -- scope for stopping for % = % loop
|
||||||
@ -332,18 +332,18 @@ compile [if %body, when %body] to:
|
|||||||
compile error at %body.source "'if' expected a Block, but got: %s"
|
compile error at %body.source "'if' expected a Block, but got: %s"
|
||||||
for %line in %body:
|
for %line in %body:
|
||||||
unless (..)
|
unless (..)
|
||||||
((%line.type is "Action") and ((length of %line) >= 2)) and (..)
|
((%line.type is "Action") and ((size of %line) >= 2)) and (..)
|
||||||
%line.(length of %line) is "Block" syntax tree
|
%line.(size of %line) is "Block" syntax tree
|
||||||
..:
|
..:
|
||||||
compile error at %line.source ".."
|
compile error at %line.source ".."
|
||||||
Invalid line for 'if', each line should contain conditional expressions followed by a block, or "else" followed by a block:
|
Invalid line for 'if', each line should contain conditional expressions followed by a block, or "else" followed by a block:
|
||||||
%s
|
%s
|
||||||
|
|
||||||
%action = %line.(length of %line)
|
%action = %line.(size of %line)
|
||||||
if ((%line.1 is "else") and ((length of %line) == 2)):
|
if ((%line.1 is "else") and ((size of %line) == 2)):
|
||||||
unless %else_allowed:
|
unless %else_allowed:
|
||||||
compile error at %line.source "Can't have two 'else' blocks"
|
compile error at %line.source "Can't have two 'else' blocks"
|
||||||
unless ((length of "\%code") > 0):
|
unless ((size of "\%code") > 0):
|
||||||
compile error at %line.source ".."
|
compile error at %line.source ".."
|
||||||
Can't have an 'else' block without a preceeding condition
|
Can't have an 'else' block without a preceeding condition
|
||||||
|
|
||||||
@ -355,7 +355,7 @@ compile [if %body, when %body] to:
|
|||||||
%else_allowed = (no)
|
%else_allowed = (no)
|
||||||
..else:
|
..else:
|
||||||
%code::append "\%clause "
|
%code::append "\%clause "
|
||||||
for %i in 1 to ((length of %line) - 1):
|
for %i in 1 to ((size of %line) - 1):
|
||||||
unless (%line.%i is syntax tree):
|
unless (%line.%i is syntax tree):
|
||||||
compile error at %line.source ".."
|
compile error at %line.source ".."
|
||||||
Invalid condition for 'if' statement:
|
Invalid condition for 'if' statement:
|
||||||
@ -371,7 +371,7 @@ compile [if %body, when %body] to:
|
|||||||
|
|
||||||
%clause = "\nelseif"
|
%clause = "\nelseif"
|
||||||
|
|
||||||
if ((length of "\%code") == 0):
|
if ((size of "\%code") == 0):
|
||||||
compile error at %body.source "'if' block has an empty body"
|
compile error at %body.source "'if' block has an empty body"
|
||||||
%code::append "\nend --when"
|
%code::append "\nend --when"
|
||||||
return %code
|
return %code
|
||||||
@ -395,18 +395,18 @@ compile [if %branch_value is %body, when %branch_value is %body] to:
|
|||||||
compile error at %body.source "'if' expected a Block, but got: %s"
|
compile error at %body.source "'if' expected a Block, but got: %s"
|
||||||
for %line in %body:
|
for %line in %body:
|
||||||
unless (..)
|
unless (..)
|
||||||
((%line.type is "Action") and ((length of %line) >= 2)) and (..)
|
((%line.type is "Action") and ((size of %line) >= 2)) and (..)
|
||||||
%line.(length of %line) is "Block" syntax tree
|
%line.(size of %line) is "Block" syntax tree
|
||||||
..:
|
..:
|
||||||
compile error at %line.source ".."
|
compile error at %line.source ".."
|
||||||
Invalid line for 'if % is % %', each line should contain expressions followed by a block, or "else" followed by a block:
|
Invalid line for 'if % is % %', each line should contain expressions followed by a block, or "else" followed by a block:
|
||||||
%s
|
%s
|
||||||
|
|
||||||
%action = %line.(length of %line)
|
%action = %line.(size of %line)
|
||||||
if ((%line.1 is "else") and ((length of %line) == 2)):
|
if ((%line.1 is "else") and ((size of %line) == 2)):
|
||||||
unless %else_allowed:
|
unless %else_allowed:
|
||||||
compile error at %line.source "Can't have two 'else' blocks"
|
compile error at %line.source "Can't have two 'else' blocks"
|
||||||
unless ((length of "\%code") > 0):
|
unless ((size of "\%code") > 0):
|
||||||
compile error at %line.source ".."
|
compile error at %line.source ".."
|
||||||
Can't have an 'else' block without a preceeding condition
|
Can't have an 'else' block without a preceeding condition
|
||||||
|
|
||||||
@ -418,7 +418,7 @@ compile [if %branch_value is %body, when %branch_value is %body] to:
|
|||||||
%else_allowed = (no)
|
%else_allowed = (no)
|
||||||
..else:
|
..else:
|
||||||
%code::append "\%clause "
|
%code::append "\%clause "
|
||||||
for %i in 1 to ((length of %line) - 1):
|
for %i in 1 to ((size of %line) - 1):
|
||||||
unless (%line.%i is syntax tree):
|
unless (%line.%i is syntax tree):
|
||||||
compile error at %line.source ".."
|
compile error at %line.source ".."
|
||||||
Invalid condition for 'if' statement:
|
Invalid condition for 'if' statement:
|
||||||
@ -434,7 +434,7 @@ compile [if %branch_value is %body, when %branch_value is %body] to:
|
|||||||
|
|
||||||
%clause = "\nelseif"
|
%clause = "\nelseif"
|
||||||
|
|
||||||
if ((length of "\%code") == 0):
|
if ((size of "\%code") == 0):
|
||||||
compile error at %body.source "'if % is % %' block has an empty body"
|
compile error at %body.source "'if % is % %' block has an empty body"
|
||||||
%code::append "\nend --when"
|
%code::append "\nend --when"
|
||||||
return (..)
|
return (..)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file defines the code that creates and manipulates coroutines
|
This file defines the code that creates and manipulates coroutines
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file contains basic error reporting code
|
This file contains basic error reporting code
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file contains basic input/output code
|
This file contains basic input/output code
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file defines some common math literals and functions
|
This file defines some common math literals and functions
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This File contains actions for making actions and compile-time actions and some helper
|
This File contains actions for making actions and compile-time actions and some helper
|
||||||
functions to make that easier.
|
functions to make that easier.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file contains definitions of operators like "+" and "and".
|
This file contains definitions of operators like "+" and "and".
|
||||||
|
|
||||||
@ -286,7 +286,7 @@ compile [not %] to (Lua value "(not \(% as lua expr))")
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((size of [1, 2, 3]) == 3)
|
assume ((size of [1, 2, 3]) == 3)
|
||||||
compile [size of %list, length of %list, len %list, || %list ||] to (..)
|
compile [size of %list, size of %list, size of %list, size of %list] to (..)
|
||||||
Lua value "(#\(%list as lua expr))"
|
Lua value "(#\(%list as lua expr))"
|
||||||
|
|
||||||
compile [%list is empty] to (Lua value "(#\(%list as lua expr) == 0)")
|
compile [%list is empty] to (Lua value "(#\(%list as lua expr) == 0)")
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file contains definitions pertaining to variable scoping
|
This file contains definitions pertaining to variable scoping
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
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.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
# 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?
|
||||||
@ -79,7 +79,7 @@ say %my_list.1
|
|||||||
|
|
||||||
# List entries can be modified like this:
|
# List entries can be modified like this:
|
||||||
%my_list.1 = "ONE!!!"
|
%my_list.1 = "ONE!!!"
|
||||||
say (length of %my_list)
|
say (size of %my_list)
|
||||||
|
|
||||||
# How do I define a dictionary/hash map?
|
# How do I define a dictionary/hash map?
|
||||||
%my_dict = {x:99, y:101}
|
%my_dict = {x:99, y:101}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
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
|
||||||
|
|
||||||
%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 (size of %b64_str))
|
||||||
%reverse_b64."=" = 0
|
%reverse_b64."=" = 0
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@ -14,15 +14,16 @@ test:
|
|||||||
assume ((base64 %plain) == %encoded) or barf ".."
|
assume ((base64 %plain) == %encoded) or barf ".."
|
||||||
\(quote %plain) base64 encoded to \(quote (base64 %plain)) \
|
\(quote %plain) base64 encoded to \(quote (base64 %plain)) \
|
||||||
..instead of \(quote %encoded)
|
..instead of \(quote %encoded)
|
||||||
|
|
||||||
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 (size of %str) via 3:
|
||||||
%bytes = [=lua "\%str:byte(\%i, \(%i + 2))"]
|
%bytes = [=lua "\%str:byte(\%i, \(%i + 2))"]
|
||||||
%chars::add %b64_str.(((%bytes.1 & 252) >> 2) + 1)
|
%chars::add %b64_str.(((%bytes.1 & 252) >> 2) + 1)
|
||||||
if (length of %bytes) is:
|
if (size of %bytes) is:
|
||||||
3:
|
3:
|
||||||
%chars::add %b64_str.(((%bytes.1 & 3) << 4) + ((%bytes.2 & 240) >> 4) + 1)
|
%chars::add %b64_str.(((%bytes.1 & 3) << 4) + ((%bytes.2 & 240) >> 4) + 1)
|
||||||
%chars::add %b64_str.(((%bytes.2 & 15) << 2) + ((%bytes.3 & 192) >> 6) + 1)
|
%chars::add %b64_str.(((%bytes.2 & 15) << 2) + ((%bytes.3 & 192) >> 6) + 1)
|
||||||
@ -43,7 +44,7 @@ action [base64 %str, base64 encode %str, %str base64]:
|
|||||||
action [chr %] (=lua "string.char(\%)")
|
action [chr %] (=lua "string.char(\%)")
|
||||||
action [decode base64 %str, %str base64 decoded, base64 decode %str]:
|
action [decode base64 %str, %str base64 decoded, base64 decode %str]:
|
||||||
%chars = []
|
%chars = []
|
||||||
for %i in 1 to (length of %str) via 4:
|
for %i in 1 to (size of %str) via 4:
|
||||||
%indices = (%reverse_b64.(%str.%) for % in %i to (%i + 3))
|
%indices = (%reverse_b64.(%str.%) for % in %i to (%i + 3))
|
||||||
%chars::add (chr ((%indices.1 << 2) + ((%indices.2 & 48) >> 4)))
|
%chars::add (chr ((%indices.1 << 2) + ((%indices.2 & 48) >> 4)))
|
||||||
if (%str.(%i + 2) == "="): stop
|
if (%str.(%i + 2) == "="): stop
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file defines actions for ANSI console color escape codes.
|
This file defines actions for ANSI console color escape codes.
|
||||||
|
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
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.
|
||||||
|
|
||||||
use "lib/os.nom"
|
use "lib/os.nom"
|
||||||
use "lib/base64.nom"
|
use "lib/base64.nom"
|
||||||
|
|
||||||
lua> ".."
|
lua> "local \%use_sha1, \%hashlib = pcall(require, 'openssl.digest')"
|
||||||
local \%use_sha1, \%hashlib = pcall(require, 'openssl.digest')
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((hash "hello world") == (hash "hello world"))
|
assume ((hash "hello world") == (hash "hello world"))
|
||||||
@ -14,13 +13,16 @@ test:
|
|||||||
Hash collision:
|
Hash collision:
|
||||||
(hash "hello world") = \(hash "hello world")
|
(hash "hello world") = \(hash "hello world")
|
||||||
(hash "goodbye") = \(hash "goodbye")
|
(hash "goodbye") = \(hash "goodbye")
|
||||||
|
|
||||||
assume (..)
|
assume (..)
|
||||||
(..)
|
(..)
|
||||||
hash ".."
|
hash ".."
|
||||||
This is a really long string meant to stress test the hashing function and
|
This is a really long string meant to stress test the hashing function and
|
||||||
ensure that it's not overflowing with long inputs.
|
ensure that it's not overflowing with long inputs.
|
||||||
..!= "inf"
|
..!= "inf"
|
||||||
assume ((hash "\0") != (hash "\0\0\0\0\0")) or barf "Incorrect hashing of null strings"
|
|
||||||
|
assume ((hash "\000") != (hash "\000\000\000\000\000")) or barf ".."
|
||||||
|
Incorrect hashing of null strings
|
||||||
if %use_sha1:
|
if %use_sha1:
|
||||||
assume ((hash "hello world") == "Kq5sNclPz7QV2+lfQIuc6R7oRu0=")
|
assume ((hash "hello world") == "Kq5sNclPz7QV2+lfQIuc6R7oRu0=")
|
||||||
if %use_sha1:
|
if %use_sha1:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file contains the implementation of an Object-Oriented programming system.
|
This file contains the implementation of an Object-Oriented programming system.
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file defines some actions that interact with the operating system and filesystem.
|
This file defines some actions that interact with the operating system and filesystem.
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
This file contains a set of definitions that bring some familiar language features
|
This file contains a set of definitions that bring some familiar language features
|
||||||
from other languages into nomsu (e.g. "||" and "continue")
|
from other languages into nomsu (e.g. "||" and "continue")
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
# This file sets the current library version.
|
# This file sets the current library version.
|
||||||
lua> "NOMSU_LIB_VERSION = 6"
|
lua> "NOMSU_LIB_VERSION = 6"
|
||||||
|
@ -26,8 +26,7 @@ local types = {
|
|||||||
"DictEntry",
|
"DictEntry",
|
||||||
"IndexChain",
|
"IndexChain",
|
||||||
"Action",
|
"Action",
|
||||||
"FileChunks",
|
"FileChunks"
|
||||||
"Method"
|
|
||||||
}
|
}
|
||||||
for _index_0 = 1, #types do
|
for _index_0 = 1, #types do
|
||||||
local name = types[_index_0]
|
local name = types[_index_0]
|
||||||
|
@ -10,7 +10,7 @@ AST.is_syntax_tree = (n, t=nil)->
|
|||||||
type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n) and (t == nil or n.type == t)
|
type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n) and (t == nil or n.type == t)
|
||||||
|
|
||||||
types = {"Number", "Var", "Block", "EscapedNomsu", "Text", "List", "Dict", "DictEntry",
|
types = {"Number", "Var", "Block", "EscapedNomsu", "Text", "List", "Dict", "DictEntry",
|
||||||
"IndexChain", "Action", "FileChunks", "Method"}
|
"IndexChain", "Action", "FileChunks"}
|
||||||
for name in *types
|
for name in *types
|
||||||
cls = {}
|
cls = {}
|
||||||
with cls
|
with cls
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
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 ...
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
Find an action by its stub. Usage:
|
Find an action by its stub. Usage:
|
||||||
nomsu tools/find_action.nom "foo %" file1 file2 directory1 ...
|
nomsu tools/find_action.nom "foo %" file1 file2 directory1 ...
|
||||||
@ -9,7 +9,7 @@ use "lib/consolecolor.nom"
|
|||||||
|
|
||||||
%stub = (command line args).1
|
%stub = (command line args).1
|
||||||
say "Looking for stub: \%stub..."
|
say "Looking for stub: \%stub..."
|
||||||
%files = ((command line args).% for % in 2 to (|| (command line args) ||))
|
%files = ((command line args).% for % in 2 to (size of (command line args)))
|
||||||
for %path in %files:
|
for %path in %files:
|
||||||
for file %filename in %path:
|
for file %filename in %path:
|
||||||
unless (%filename matches "%.nom$") (do next %filename)
|
unless (%filename matches "%.nom$") (do next %filename)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
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 ...
|
||||||
@ -10,8 +10,9 @@ action [print tree %t at indent %indent]:
|
|||||||
"Action":
|
"Action":
|
||||||
say "\(%indent)Action (\(%t.stub)):"
|
say "\(%indent)Action (\(%t.stub)):"
|
||||||
if %t.target:
|
if %t.target:
|
||||||
say "\(%indent) Target:"
|
say "\%indent Target:"
|
||||||
print tree %t.target at indent "\%indent "
|
print tree %t.target at indent "\%indent "
|
||||||
|
|
||||||
for %arg in %t:
|
for %arg in %t:
|
||||||
if (%arg is syntax tree):
|
if (%arg is syntax tree):
|
||||||
print tree %arg at indent "\%indent "
|
print tree %arg at indent "\%indent "
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V2.5.5.5
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
Tool to find and replace one tree with another.
|
Tool to find and replace one tree with another.
|
||||||
nomsu tools/replace.nom [-i] tree_to_replace replacement file1 file2 directory1 ...
|
nomsu tools/replace.nom [-i] tree_to_replace replacement file1 file2 directory1 ...
|
||||||
@ -13,7 +13,7 @@ if (%args.1 is "-i"):
|
|||||||
%inplace = (yes)
|
%inplace = (yes)
|
||||||
%args::remove index 1
|
%args::remove index 1
|
||||||
|
|
||||||
if ((length of %args) < 3):
|
if ((size of %args) < 3):
|
||||||
say "Usage: nomsu tools/replace.nom [-i] tree_to_replace replacement files..."
|
say "Usage: nomsu tools/replace.nom [-i] tree_to_replace replacement files..."
|
||||||
lua> "os.exit(1)"
|
lua> "os.exit(1)"
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
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 ...
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env nomsu -V3.6.5.6
|
#!/usr/bin/env nomsu -V3.7.5.6
|
||||||
#
|
#
|
||||||
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 ...
|
||||||
|
Loading…
Reference in New Issue
Block a user