Updating to version 2.4.4.3, with new syntax for multi-statement 'if'

and switch statements.
This commit is contained in:
Bruce Hill 2018-07-18 17:55:29 -07:00
parent acb86f78c3
commit bf67a61013
36 changed files with 225 additions and 224 deletions

View File

@ -312,12 +312,6 @@ do
end end
return statements return statements
end, end,
as_expr = function(self)
if self.is_value then
return self
end
return error("Cannot convert to expression: " .. tostring(tostring(self)))
end,
__tostring = function(self) __tostring = function(self)
if self.__str == nil then if self.__str == nil then
local buff, indent = { }, 0 local buff, indent = { }, 0

View File

@ -4,7 +4,6 @@
{:insert, :remove, :concat} = table {:insert, :remove, :concat} = table
{:repr} = require 'utils' {:repr} = require 'utils'
local LuaCode, NomsuCode, Source local LuaCode, NomsuCode, Source
export LINE_STARTS
class Source class Source
new: (@filename, @start, @stop)=> new: (@filename, @start, @stop)=>
@ -185,11 +184,6 @@ class LuaCode extends Code
if suffix != "" if suffix != ""
statements\append suffix statements\append suffix
return statements return statements
as_expr: =>
if @is_value
return self
error("Cannot convert to expression: #{tostring self}")
__tostring: => __tostring: =>
if @__str == nil if @__str == nil

View File

@ -4,7 +4,7 @@ use "compatibility/compatibility.nom"
upgrade %tree to "2" as: upgrade %tree to "2" as:
unless (%tree is "Action" syntax tree): return unless (%tree is "Action" syntax tree): return
if (all[%tree.stub is "if % % else %", not (%tree.3 is "Var" syntax tree), not (%tree.5 is "Var" syntax tree)]): if (%tree.stub is "if % % else %"):
%true_body = (%tree.3 upgraded) %true_body = (%tree.3 upgraded)
unless (%true_body is "Block" syntax tree): unless (%true_body is "Block" syntax tree):
%true_body = (=lua "Block(\%true_body.source, \%true_body)") %true_body = (=lua "Block(\%true_body.source, \%true_body)")
@ -22,7 +22,7 @@ upgrade %tree to "2" as:
"for % in % to % via % %", "for % in % to % %", "for % % in % %", "do %" "for % in % to % via % %", "for % in % to % %", "for % % in % %", "do %"
"for % in recursive % %", "test %", "with % %", "result of %" "for % in recursive % %", "test %", "with % %", "result of %"
for %n in %need_blocks: for %n in %need_blocks:
if ((%tree.stub is %n) and (not ((last in %tree) is "Var" syntax tree))): 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 ((last in %bits) is "Block" syntax tree):
%body = (last in %bits) %body = (last in %bits)

View File

@ -21,16 +21,16 @@ compile [upgrade action %action to %version as %body] to:
%replacements.(%action.%i.1) = "\(\%tree as lua id)[\%i]" %replacements.(%action.%i.1) = "\(\%tree as lua id)[\%i]"
local action [make tree %t]: local action [make tree %t]:
when: when:
* (%t is "Var" syntax tree): (%t is "Var" syntax tree):
if (%replacements.(%t.1)): if (%replacements.(%t.1)):
return %replacements.(%t.1) return %replacements.(%t.1)
..else: ..else:
return "\(%t.type)(\(quote "\(%t.source)"), \(quote "\(%t.1) \0\(=lua "string.format('%X', __MANGLE_INDEX)")"))" return "\(%t.type)(\(quote "\(%t.source)"), \(quote "\(%t.1) \0\(=lua "string.format('%X', __MANGLE_INDEX)")"))"
* (%t is syntax tree): (%t is syntax tree):
%args = ((make tree %) for % in %t) %args = ((make tree %) for % in %t)
add "\(\%tree as lua id).source" to %args at index 1 add "\(\%tree as lua id).source" to %args at index 1
return "\(%t.type)(\(%args joined with ", "))" return "\(%t.type)(\(%args joined with ", "))"
*else: return (quote "\%t") else: return (quote "\%t")
return (..) return (..)
Lua ".." Lua ".."
A_upgrade_action_1_to_2_via_3(\(quote %action.stub), \(%version as lua expr), function(\(\%tree as lua id)) A_upgrade_action_1_to_2_via_3(\(quote %action.stub), \(%version as lua expr), function(\(\%tree as lua id))
@ -66,9 +66,9 @@ parse [%tree upgraded from %start_version] as (..)
%tree upgraded from %start_version to (Nomsu version) %tree upgraded from %start_version to (Nomsu version)
parse [%tree upgraded to %end_version] as (..) parse [%tree upgraded to %end_version] as (..)
%tree upgraded from %tree.version to %end_version %tree upgraded from (%tree.version or "0") to %end_version
parse [%tree upgraded] as (%tree upgraded from %tree.version to (Nomsu version)) parse [%tree upgraded] as (%tree upgraded from (%tree.version or "0") to (Nomsu version))
action [use %path from version %version] (..) action [use %path from version %version] (..)
for file %filename in %path: for file %filename in %path:
if (=lua "LOADED[\%filename]"): do next %filename if (=lua "LOADED[\%filename]"): do next %filename

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
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.

View File

@ -154,7 +154,7 @@ compile [..]
..to: ..to:
# This uses Lua's approach of only allowing loop-scoped variables in a loop # This uses Lua's approach of only allowing loop-scoped variables in a loop
assume (%var.type is "Var") or barf "Loop expected variable, not: \%var" unless (%var.type is "Var"): compile error at %var.source "Loop expected variable, not: %s"
%lua = (..) %lua = (..)
Lua ".." Lua ".."
for \(%var as lua expr)=\(%start as lua expr),\(%stop as lua expr),\(%step as lua expr) do for \(%var as lua expr)=\(%start as lua expr),\(%stop as lua expr),\(%step as lua expr) do
@ -185,12 +185,11 @@ compile [..]
parse [for %var in %start to %stop %body] as (..) parse [for %var in %start to %stop %body] as (..)
for %var in %start to %stop via 1 %body for %var in %start to %stop via 1 %body
# For-each loop (lua's "ipairs()") # For-each loop (lua's "ipairs()")
compile [for %var in %iterable %body] to: compile [for %var in %iterable %body] to:
# This uses Lua's approach of only allowing loop-scoped variables in a loop # This uses Lua's approach of only allowing loop-scoped variables in a loop
assume (%var.type is "Var") or barf "Loop expected variable, not: \%var" unless (%var.type is "Var"): compile error at %var.source "Loop expected variable, not: %s"
%lua = (..) %lua = (..)
Lua ".." Lua ".."
for i,\(%var as lua identifier) in ipairs(\(%iterable as lua expr)) do for i,\(%var as lua identifier) in ipairs(\(%iterable as lua expr)) do
@ -223,8 +222,8 @@ compile [for %key = %value in %iterable %body, for %key %value in %iterable %bod
..to: ..to:
# This uses Lua's approach of only allowing loop-scoped variables in a loop # This uses Lua's approach of only allowing loop-scoped variables in a loop
assume (%key.type is "Var") or barf "Loop expected variable, not: \%key" unless (%key.type is "Var"): compile error at %key.source "Loop expected variable, not: %s"
assume (%value.type is "Var") or barf "Loop expected variable, not: \%value" unless (%value.type is "Var"): compile error at %value.source "Loop expected variable, not: %s"
%lua = (..) %lua = (..)
Lua ".." Lua ".."
for \(%key as lua identifier),\(%value as lua identifier) in pairs(\(%iterable as lua expr)) do for \(%key as lua identifier),\(%value as lua identifier) in pairs(\(%iterable as lua expr)) do
@ -266,101 +265,88 @@ compile [for %key = %value in %iterable %body, for %key %value in %iterable %bod
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Switch statement/multi-branch if # Multi-branch conditional (if..elseif..else)
compile [when %body] to: compile [if %body, when %body] to:
%code = (Lua "") %code = (Lua "")
%fallthroughs = [] %clause = "if"
%is_first = (yes) %else_allowed = (yes)
%seen_else = (no) unless (%body.type is "Block"): compile error at %body.source "'if' expected a Block, but got: %s"
%branches = (%body if (%body.type == "Block") else [%body]) for %line in %body:
for %func_call in %branches: unless (..)
assume (%func_call.type is "Action") or barf "Invalid format for 'when' statement. Only '*' blocks are allowed." ((%line.type is "Action") and ((length of %line) >= 2))
with {%star: %func_call.1, %condition: %func_call.2, %action: %func_call.3}: ..and (%line.(length of %line) is "Block" syntax tree)
assume (%star == "*") or barf "Invalid format for 'when' statement. Lines must begin with '*'" ..:
assume %condition or barf ".." compile error at %line.source ".."
Invalid format for 'when' statement. Lines must begin with '*' and have a condition \ Invalid line for 'if', each line should contain conditional expressions \
..or the word "else" ..followed by a block, or "else" followed by a block:
%s
if (%action is (nil)): %action = %line.(length of %line)
lua> "table.insert(\%fallthroughs, \(%condition as lua expr))" if ((%line.1 is "else") and ((length of %line) == 2)):
do next %func_call unless %else_allowed: compile error at %line.source "Can't have two 'else' blocks"
unless ((length of "\%code") > 0):
if (%condition == "else"): compile error at %line.source "Can't have an 'else' block without a preceeding condition"
assume (not %is_first) or barf "'else' clause cannot be first in 'when % = ?' block" to %code write "\nelse\n \(%action as lua statements)"
to %code write "\nelse\n " %else_allowed = (no)
to %code write (%action as lua statements) ..else:
%seen_else = (yes) to %code write "\%clause "
..else: for %i in 1 to ((length of %line) - 1):
assume (not %seen_else) or barf "'else' clause needs to be last in 'when' block" unless (%line.%i is syntax tree):
lua> "table.insert(\%fallthroughs, \(%condition as lua expr))" compile error at %line.source ".."
to %code write "\("if" if %is_first else "\nelseif") " Invalid condition for 'if' statement:
for %i = %condition in %fallthroughs: %s
if (%i > 1): to %code write " or " if (%i > 1): to %code write " or "
to %code write %condition to %code write (%line.%i as lua expr)
to %code write " then\n \(%action as lua statements)"
to %code write " then\n " %clause = "\nelseif"
to %code write (%action as lua statements)
%fallthroughs = []
%is_first = (no)
assume (%fallthroughs == []) or barf "Unfinished fallthrough conditions in 'when' block" if ((length of "\%code") == 0):
assume ((length of "\%code") > 0) or barf "Empty body for 'when' block" compile error at %body.source "'if' block has an empty body"
to %code write "\nend --when" to %code write "\nend --when"
return %code return %code
# Switch statement # Switch statement
compile [when %branch_value = ? %body, when %branch_value is? %body] to: compile [if %branch_value is %body, when %branch_value is %body] to:
%code = (Lua "") %code = (Lua "")
%fallthroughs = [] %clause = "if"
%is_first = (yes) %else_allowed = (yes)
%seen_else = (no) unless (%body.type is "Block"): compile error at %body.source "'if' expected a Block, but got: %s"
%branches = (%body if (%body.type == "Block") else [%body]) for %line in %body:
for %func_call in %branches: unless (..)
assume (%func_call.type is "Action") or barf "Invalid format for 'when' statement. Only '*' blocks are allowed." ((%line.type is "Action") and ((length of %line) >= 2))
with {%star: %func_call.1, %condition: %func_call.2, %action: %func_call.3}: ..and (%line.(length of %line) is "Block" syntax tree)
assume (%star == "*") or barf "Invalid format for 'when' statement. Lines must begin with '*'" ..:
assume %condition or barf ".." compile error at %line.source ".."
Invalid format for 'when' statement. Lines must begin with '*' and have a condition \ Invalid line for 'if % is % %', each line should contain expressions \
..or the word "else" ..followed by a block, or "else" followed by a block:
%s
if (%action is (nil)): %action = %line.(length of %line)
lua> "table.insert(\%fallthroughs, \(%condition as lua expr))" if ((%line.1 is "else") and ((length of %line) == 2)):
do next %func_call unless %else_allowed: compile error at %line.source "Can't have two 'else' blocks"
unless ((length of "\%code") > 0):
if (%condition == "else"): compile error at %line.source "Can't have an 'else' block without a preceeding condition"
assume (not %is_first) or barf "'else' clause cannot be first in 'when % = ?' block" to %code write "\nelse\n \(%action as lua statements)"
to %code write "\nelse\n " %else_allowed = (no)
to %code write (%action as lua statements) ..else:
..else: to %code write "\%clause "
assume (not %seen_else) or barf "'else' clause needs to be last in 'when % = ?' block" for %i in 1 to ((length of %line) - 1):
to %code write "\("if" if %is_first else "\nelseif") " unless (%line.%i is syntax tree):
lua> "table.insert(\%fallthroughs, \(%condition as lua expr))" compile error at %line.source ".."
for %i = % in %fallthroughs: Invalid condition for 'if' statement:
if (%i > 1): to %code write " or " %s
if ((%.type is "Text") or (%.type is "Number")): if (%i > 1): to %code write " or "
to %code write "branch_value == \%" to %code write "branch_value == \(%line.%i as lua expr)"
..else: to %code write "utils.equivalent(branch_value, \%)" to %code write " then\n \(%action as lua statements)"
%clause = "\nelseif"
to %code write "then\n "
to %code write (%action as lua statements)
%fallthroughs = []
%is_first = (no)
assume (%fallthroughs == []) or barf "Unfinished fallthrough conditions in 'when' block" if ((length of "\%code") == 0):
assume ((length of "\%code") > 0) or barf "No body for 'when % = ?' block!" compile error at %body.source "'if % is % %' block has an empty body"
to %code write "\nend" to %code write "\nend --when"
%code = (..) return (..)
Lua ".." Lua ".."
do --when % = ? do --if % is
local branch_value = \(%branch_value as lua expr) local branch_value = \(%branch_value as lua expr)
\%code \%code
end --when % = ? end --if % is
return %code
# Do/finally # Do/finally
compile [do %action] to (..) compile [do %action] to (..)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
This file defines the code that creates and manipulates coroutines This file defines the code that creates and manipulates coroutines

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
This file contains basic error reporting code This file contains basic error reporting code
@ -7,6 +7,9 @@ compile [traceback] to (Lua value "debug.traceback()")
compile [traceback %] to (Lua value "debug.traceback('', \(% as lua expr))") compile [traceback %] to (Lua value "debug.traceback('', \(% as lua expr))")
compile [barf] to (Lua "error(nil, 0);") compile [barf] to (Lua "error(nil, 0);")
compile [barf %msg] to (Lua "error(\(%msg as lua expr), 0);") compile [barf %msg] to (Lua "error(\(%msg as lua expr), 0);")
compile [compile error at %source %msg] to (..)
Lua "nomsu:compile_error(\(%source as lua expr), \(%msg as lua expr))"
compile [assume %condition] to: compile [assume %condition] to:
lua> ".." lua> ".."
local \%assumption = 'Assumption failed: '..tostring(nomsu:tree_to_nomsu(\%condition)) local \%assumption = 'Assumption failed: '..tostring(nomsu:tree_to_nomsu(\%condition))

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
This file contains basic input/output code This file contains basic input/output code

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
This file defines some common math literals and functions This file defines some common math literals and functions

View File

@ -1,9 +1,9 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
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.
lua> "NOMSU_CORE_VERSION = 3" lua> "NOMSU_CORE_VERSION = 4"
lua> ".." lua> ".."
nomsu.COMPILE_ACTIONS["% -> %"] = function(nomsu, tree, \%args, \%body) nomsu.COMPILE_ACTIONS["% -> %"] = function(nomsu, tree, \%args, \%body)
local lua = LuaCode.Value(tree.source, "function(") local lua = LuaCode.Value(tree.source, "function(")
@ -119,8 +119,16 @@ compile [parse %actions as %body] to (..)
local ret = \(compile as (compile %actions to %new_body)) local ret = \(compile as (compile %actions to %new_body))
return ret return ret
compile [%tree as lua expr] to (..) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lua value "nomsu:compile(\(=lua "nomsu:compile(\%tree):as_expr()")):as_expr()"
action [%tree as lua expr]:
lua> ".."
\%tree_lua = nomsu:compile(\%tree)
if not \%tree_lua.is_value then
nomsu:compile_error(\%tree.source, "Could not convert %s to a Lua expression",
nomsu:tree_to_nomsu(\%tree))
end
return \%tree_lua
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
This file contains definitions of operators like "+" and "and". This file contains definitions of operators like "+" and "and".
@ -147,21 +147,29 @@ compile [%x wrapped around %y, %x mod %y] to (..)
# (uses a lambda to avoid re-evaluating middle value, while still being an expression) # (uses a lambda to avoid re-evaluating middle value, while still being an expression)
parse [%x < %y < %z] as (..) parse [%x < %y < %z] as (..)
=lua "(function(x,y,z) return x < y and y < z; end)(\%x,\%y,\%z)" =lua "(function(x,y,z) return x < y and y < z; end)(\%x,\%y,\%z)"
parse [%x <= %y < %z] as (..) parse [%x <= %y < %z] as (..)
=lua "(function(x,y,z) return x <= y and y < z; end)(\%x,\%y,\%z)" =lua "(function(x,y,z) return x <= y and y < z; end)(\%x,\%y,\%z)"
parse [%x < %y <= %z] as (..) parse [%x < %y <= %z] as (..)
=lua "(function(x,y,z) return x < y and y <= z; end)(\%x,\%y,\%z)" =lua "(function(x,y,z) return x < y and y <= z; end)(\%x,\%y,\%z)"
parse [%x <= %y <= %z] as (..) parse [%x <= %y <= %z] as (..)
=lua "(function(x,y,z) return x <= y and y <= z; end)(\%x,\%y,\%z)" =lua "(function(x,y,z) return x <= y and y <= z; end)(\%x,\%y,\%z)"
parse [%x > %y > %z] as (..) parse [%x > %y > %z] as (..)
=lua "(function(x,y,z) return x > y and y > z; end)(\%x,\%y,\%z)" =lua "(function(x,y,z) return x > y and y > z; end)(\%x,\%y,\%z)"
parse [%x >= %y > %z] as (..) parse [%x >= %y > %z] as (..)
=lua "(function(x,y,z) return x >= y and y > z; end)(\%x,\%y,\%z)" =lua "(function(x,y,z) return x >= y and y > z; end)(\%x,\%y,\%z)"
parse [%x > %y >= %z] as (..) parse [%x > %y >= %z] as (..)
=lua "(function(x,y,z) return x > y and y >= z; end)(\%x,\%y,\%z)" =lua "(function(x,y,z) return x > y and y >= z; end)(\%x,\%y,\%z)"
parse [%x >= %y >= %z] as (..) parse [%x >= %y >= %z] as (..)
=lua "(function(x,y,z) return x >= y and y >= z; end)(\%x,\%y,\%z)" =lua "(function(x,y,z) return x >= y and y >= z; end)(\%x,\%y,\%z)"
# TODO: optimize for common case where x,y,z are all either variables or number literals # TODO: optimize for common case where x,y,z are all either variables or number literals
# Boolean Operators # Boolean Operators
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))")
@ -204,4 +212,4 @@ parse [%var /= %] as (%var = (%var / %))
parse [%var ^= %] as (%var = (%var ^ %)) parse [%var ^= %] as (%var = (%var ^ %))
parse [%var and= %] as (%var = (%var and %)) parse [%var and= %] as (%var = (%var and %))
parse [%var or= %] as (%var = (%var or %)) parse [%var or= %] as (%var = (%var or %))
parse [wrap %var around %] as (%var = (%var wrapped around %)) parse [wrap %var around %] as (%var = (%var wrapped around %))

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
This file contains definitions pertaining to variable scoping This file contains definitions pertaining to variable scoping
@ -8,17 +8,16 @@ use "core/collections.nom"
use "core/control_flow.nom" use "core/control_flow.nom"
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)
when %locals.type = ?: if %locals.type is:
* "Dict": "Dict":
%body_lua = (..) %body_lua = (..)
Lua "\(compile as (<- %locals))\n\%body_lua" Lua "\(compile as (<- %locals))\n\%body_lua"
declare locals ("\(%.1 as lua)" for % in %locals) in %body_lua declare locals ("\(%.1 as lua)" for % in %locals) in %body_lua
* "List": declare locals ("\(% as lua)" for % in %locals) in %body_lua "List": declare locals ("\(% as lua)" for % in %locals) in %body_lua
* "Var" "Var" "Action": declare locals ["\(%locals as lua)"] in %body_lua
* "Action": declare locals ["\(%locals as lua)"] in %body_lua else: compile error at %locals.source "Unexpected locals: %s"
*else (barf "Unexpected local: \(%locals as nomsu)")
return (..) return (..)
Lua "do\n \%body_lua\nend" Lua "do\n \%body_lua\nend"

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
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.

View File

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

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
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.

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
This file contains the implementation of an Object-Oriented programming system. This file contains the implementation of an Object-Oriented programming system.

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
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.

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
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")
@ -11,7 +11,7 @@ parse [%a === %b] as ((%a 's id) is (%b 's id))
parse [%a !== %b] as ((%a 's id) is not (%b 's id)) parse [%a !== %b] as ((%a 's id) is not (%b 's id))
parse [%a mod %b] as (%a wrapped around %b) parse [%a mod %b] as (%a wrapped around %b)
parse [function %names %body, def %names %body] as (action %names %body) parse [function %names %body, def %names %body] as (action %names %body)
parse [switch %branch_value %body] as (when %branch_value = ? %body) parse [switch %branch_value %body] as (if %branch_value is: %body)
parse [None, Null] as (nil) parse [None, Null] as (nil)
parse [True, true] as (yes) parse [True, true] as (yes)
parse [False, false] as (no) parse [False, false] as (no)

View File

@ -1,3 +1,3 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# This file sets the current library version. # This file sets the current library version.
lua> "NOMSU_LIB_VERSION = 3" lua> "NOMSU_LIB_VERSION = 3"

View File

@ -227,18 +227,19 @@ do
}) })
NomsuCompiler.LOADED = { } NomsuCompiler.LOADED = { }
NomsuCompiler.AST = AST NomsuCompiler.AST = AST
NomsuCompiler.compile_error = function(self, tok, err_format_string, ...) NomsuCompiler.compile_error = function(self, source, err_format_string, ...)
local file = files.read(tok.source.filename) err_format_string = err_format_string:gsub("%%[^s]", "%%%1")
local file = files.read(source.filename)
local line_starts = files.get_line_starts(file) local line_starts = files.get_line_starts(file)
local line_no = files.get_line_number(file, tok.source.start) local line_no = files.get_line_number(file, source.start)
local line_start = line_starts[line_no] local line_start = line_starts[line_no]
local src = colored.dim(file:sub(line_start, tok.source.start - 1)) local src = colored.dim(file:sub(line_start, source.start - 1))
src = src .. colored.underscore(colored.bright(colored.red(file:sub(tok.source.start, tok.source.stop - 1)))) src = src .. colored.underscore(colored.bright(colored.red(file:sub(source.start, source.stop - 1))))
local end_of_line = (line_starts[files.get_line_number(file, tok.source.stop) + 1] or 0) - 1 local end_of_line = (line_starts[files.get_line_number(file, source.stop) + 1] or 0) - 1
src = src .. colored.dim(file:sub(tok.source.stop, end_of_line - 1)) src = src .. colored.dim(file:sub(source.stop, end_of_line - 1))
src = ' ' .. src:gsub('\n', '\n ') src = ' ' .. src:gsub('\n', '\n ')
local err_msg = err_format_string:format(src, ...) local err_msg = err_format_string:format(src, ...)
return error(tostring(tok.source.filename) .. ":" .. tostring(line_no) .. ": " .. err_msg, 0) return error(tostring(source.filename) .. ":" .. tostring(line_no) .. ": " .. err_msg, 0)
end end
local math_expression = re.compile([[ ([+-] " ")* "%" (" " [*/^+-] (" " [+-])* " %")+ !. ]]) local math_expression = re.compile([[ ([+-] " ")* "%" (" " [*/^+-] (" " [+-])* " %")+ !. ]])
local add_lua_bits local add_lua_bits
@ -256,7 +257,7 @@ do
else else
local bit_lua = self:compile(bit) local bit_lua = self:compile(bit)
if not (bit_lua.is_value) then if not (bit_lua.is_value) then
self:compile_error(bit, "Cannot use:\n%s\nas a string interpolation value, since it's not an expression.") self:compile_error(bit.source, "Cannot use:\n%s\nas a string interpolation value, since it's not an expression.")
end end
lua:append(bit_lua) lua:append(bit_lua)
end end
@ -289,7 +290,7 @@ do
else else
local bit_lua = self:compile(bit) local bit_lua = self:compile(bit)
if not (bit_lua.is_value) then if not (bit_lua.is_value) then
self:compile_error(bit, "Cannot use:\n%s\nas a string interpolation value, since it's not an expression.") self:compile_error(bit.source, "Cannot use:\n%s\nas a string interpolation value, since it's not an expression.")
end end
add_bit_lua(lua, bit_lua) add_bit_lua(lua, bit_lua)
end end
@ -308,7 +309,7 @@ do
else else
local tok_lua = self:compile(tok) local tok_lua = self:compile(tok)
if not (tok_lua.is_value) then if not (tok_lua.is_value) then
self:compile_error(tok, "Non-expression value inside math expression:\n%s") self:compile_error(tok.source, "Non-expression value inside math expression:\n%s")
end end
if tok.type == "Action" then if tok.type == "Action" then
tok_lua:parenthesize() tok_lua:parenthesize()
@ -456,7 +457,7 @@ do
source = nil source = nil
end end
local lua_string = tostring(lua) local lua_string = tostring(lua)
local run_lua_fn, err = load(lua_string, tostring(source or lua.source), "t", self) local run_lua_fn, err = load(lua_string, nil and tostring(source or lua.source), "t", self)
if not run_lua_fn then if not run_lua_fn then
local line_numbered_lua = concat((function() local line_numbered_lua = concat((function()
local _accum_0 = { } local _accum_0 = { }
@ -540,7 +541,7 @@ do
end end
local ret = compile_action(self, tree, unpack(args)) local ret = compile_action(self, tree, unpack(args))
if not ret then if not ret then
self:compile_error(tree, "Compile-time action:\n%s\nfailed to produce any Lua") self:compile_error(tree.source, "Compile-time action:\n%s\nfailed to produce any Lua")
end end
return ret return ret
end end
@ -556,7 +557,7 @@ do
end end
local arg_lua = self:compile(tok) local arg_lua = self:compile(tok)
if not (arg_lua.is_value) then if not (arg_lua.is_value) then
self:compile_error(tok, "Cannot use:\n%s\nas an argument to %s, since it's not an expression, it produces: %s", stub, repr(arg_lua)) self:compile_error(tok.source, "Cannot use:\n%s\nas an argument to %s, since it's not an expression, it produces: %s", stub, repr(arg_lua))
end end
insert(args, arg_lua) insert(args, arg_lua)
_continue_0 = true _continue_0 = true
@ -624,7 +625,7 @@ do
if not (bit_lua.is_value) then if not (bit_lua.is_value) then
local src = ' ' .. gsub(tostring(recurse(bit)), '\n', '\n ') local src = ' ' .. gsub(tostring(recurse(bit)), '\n', '\n ')
local line = tostring(bit.source.filename) .. ":" .. tostring(files.get_line_number(files.read(bit.source.filename), bit.source.start)) local line = tostring(bit.source.filename) .. ":" .. tostring(files.get_line_number(files.read(bit.source.filename), bit.source.start))
self:compile_error(bit, "Cannot use:\n%s\nas a string interpolation value, since it's not an expression.") self:compile_error(bit.source, "Cannot use:\n%s\nas a string interpolation value, since it's not an expression.")
end end
if #lua.bits > 0 then if #lua.bits > 0 then
lua:append("..") lua:append("..")
@ -655,7 +656,7 @@ do
for i, item in ipairs(tree) do for i, item in ipairs(tree) do
local item_lua = self:compile(item) local item_lua = self:compile(item)
if not (item_lua.is_value) then if not (item_lua.is_value) then
self:compile_error(item, "Cannot use:\n%s\nas a list item, since it's not an expression.") self:compile_error(item.source, "Cannot use:\n%s\nas a list item, since it's not an expression.")
end end
items[i] = item_lua items[i] = item_lua
end end
@ -680,11 +681,11 @@ do
local key, value = tree[1], tree[2] local key, value = tree[1], tree[2]
local key_lua = self:compile(key) local key_lua = self:compile(key)
if not (key_lua.is_value) then if not (key_lua.is_value) then
self:compile_error(tree[1], "Cannot use:\n%s\nas a dict key, since it's not an expression.") self:compile_error(tree[1].source, "Cannot use:\n%s\nas a dict key, since it's not an expression.")
end end
local value_lua = value and self:compile(value) or LuaCode.Value(key.source, "true") local value_lua = value and self:compile(value) or LuaCode.Value(key.source, "true")
if not (value_lua.is_value) then if not (value_lua.is_value) then
self:compile_error(tree[2], "Cannot use:\n%s\nas a dict value, since it's not an expression.") self:compile_error(tree[2].source, "Cannot use:\n%s\nas a dict value, since it's not an expression.")
end end
local key_str = match(tostring(key_lua), [=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=]) local key_str = match(tostring(key_lua), [=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=])
if key_str then if key_str then
@ -697,7 +698,7 @@ do
elseif "IndexChain" == _exp_0 then elseif "IndexChain" == _exp_0 then
local lua = self:compile(tree[1]) local lua = self:compile(tree[1])
if not (lua.is_value) then if not (lua.is_value) then
self:compile_error(tree[1], "Cannot index:\n%s\nsince it's not an expression.") self:compile_error(tree[1].source, "Cannot index:\n%s\nsince it's not an expression.")
end end
local first_char = sub(tostring(lua), 1, 1) local first_char = sub(tostring(lua), 1, 1)
if first_char == "{" or first_char == '"' or first_char == "[" then if first_char == "{" or first_char == '"' or first_char == "[" then
@ -707,7 +708,7 @@ do
local key = tree[i] local key = tree[i]
local key_lua = self:compile(key) local key_lua = self:compile(key)
if not (key_lua.is_value) then if not (key_lua.is_value) then
self:compile_error(key, "Cannot use:\n%s\nas an index, since it's not an expression.") self:compile_error(key.source, "Cannot use:\n%s\nas an index, since it's not an expression.")
end end
local key_lua_str = tostring(key_lua) local key_lua_str = tostring(key_lua)
do do
@ -833,7 +834,7 @@ do
return nomsu return nomsu
else else
local pos = tree.source.start local pos = tree.source.start
local nomsu = NomsuCode(tree.source, pop_comments(pos, '\n')) local nomsu = NomsuCode(tree.source, pop_comments(pos))
local next_space = "" local next_space = ""
for i, bit in ipairs(tree) do for i, bit in ipairs(tree) do
if match(next_space, '\n') then if match(next_space, '\n') then

View File

@ -124,18 +124,19 @@ with NomsuCompiler
.LOADED = {} .LOADED = {}
.AST = AST .AST = AST
.compile_error = (tok, err_format_string, ...)=> .compile_error = (source, err_format_string, ...)=>
file = files.read(tok.source.filename) err_format_string = err_format_string\gsub("%%[^s]", "%%%1")
file = files.read(source.filename)
line_starts = files.get_line_starts(file) line_starts = files.get_line_starts(file)
line_no = files.get_line_number(file, tok.source.start) line_no = files.get_line_number(file, source.start)
line_start = line_starts[line_no] line_start = line_starts[line_no]
src = colored.dim(file\sub(line_start, tok.source.start-1)) src = colored.dim(file\sub(line_start, source.start-1))
src ..= colored.underscore colored.bright colored.red(file\sub(tok.source.start, tok.source.stop-1)) src ..= colored.underscore colored.bright colored.red(file\sub(source.start, source.stop-1))
end_of_line = (line_starts[files.get_line_number(file, tok.source.stop) + 1] or 0) - 1 end_of_line = (line_starts[files.get_line_number(file, source.stop) + 1] or 0) - 1
src ..= colored.dim(file\sub(tok.source.stop, end_of_line-1)) src ..= colored.dim(file\sub(source.stop, end_of_line-1))
src = ' '..src\gsub('\n', '\n ') src = ' '..src\gsub('\n', '\n ')
err_msg = err_format_string\format(src, ...) err_msg = err_format_string\format(src, ...)
error("#{tok.source.filename}:#{line_no}: "..err_msg, 0) error("#{source.filename}:#{line_no}: "..err_msg, 0)
-- This is a bit of a hack, but this code handles arbitrarily complex -- This is a bit of a hack, but this code handles arbitrarily complex
-- math expressions like 2*x + 3^2 without having to define a single -- math expressions like 2*x + 3^2 without having to define a single
@ -154,7 +155,7 @@ with NomsuCompiler
else else
bit_lua = @compile(bit) bit_lua = @compile(bit)
unless bit_lua.is_value unless bit_lua.is_value
@compile_error bit, @compile_error bit.source,
"Cannot use:\n%s\nas a string interpolation value, since it's not an expression." "Cannot use:\n%s\nas a string interpolation value, since it's not an expression."
lua\append bit_lua lua\append bit_lua
return lua return lua
@ -178,7 +179,7 @@ with NomsuCompiler
else else
bit_lua = @compile(bit) bit_lua = @compile(bit)
unless bit_lua.is_value unless bit_lua.is_value
@compile_error bit, @compile_error bit.source,
"Cannot use:\n%s\nas a string interpolation value, since it's not an expression." "Cannot use:\n%s\nas a string interpolation value, since it's not an expression."
add_bit_lua(lua, bit_lua) add_bit_lua(lua, bit_lua)
lua\append ")" lua\append ")"
@ -194,7 +195,7 @@ with NomsuCompiler
else else
tok_lua = @compile(tok) tok_lua = @compile(tok)
unless tok_lua.is_value unless tok_lua.is_value
@compile_error tok, "Non-expression value inside math expression:\n%s" @compile_error tok.source, "Non-expression value inside math expression:\n%s"
if tok.type == "Action" if tok.type == "Action"
tok_lua\parenthesize! tok_lua\parenthesize!
lua\append tok_lua lua\append tok_lua
@ -293,7 +294,7 @@ with NomsuCompiler
.run_lua = (lua, source=nil)=> .run_lua = (lua, source=nil)=>
lua_string = tostring(lua) lua_string = tostring(lua)
run_lua_fn, err = load(lua_string, tostring(source or lua.source), "t", self) run_lua_fn, err = load(lua_string, nil and tostring(source or lua.source), "t", self)
if not run_lua_fn if not run_lua_fn
line_numbered_lua = concat( line_numbered_lua = concat(
[format("%3d|%s",i,line) for i, line in ipairs files.get_lines(lua_string)], [format("%3d|%s",i,line) for i, line in ipairs files.get_lines(lua_string)],
@ -340,7 +341,7 @@ with NomsuCompiler
-- TODO: use tail call? -- TODO: use tail call?
ret = compile_action(@, tree, unpack(args)) ret = compile_action(@, tree, unpack(args))
if not ret if not ret
@compile_error tree, @compile_error tree.source,
"Compile-time action:\n%s\nfailed to produce any Lua" "Compile-time action:\n%s\nfailed to produce any Lua"
return ret return ret
@ -350,7 +351,7 @@ with NomsuCompiler
if type(tok) == "string" then continue if type(tok) == "string" then continue
arg_lua = @compile(tok) arg_lua = @compile(tok)
unless arg_lua.is_value unless arg_lua.is_value
@compile_error tok, @compile_error tok.source,
"Cannot use:\n%s\nas an argument to %s, since it's not an expression, it produces: %s", "Cannot use:\n%s\nas an argument to %s, since it's not an expression, it produces: %s",
stub, repr arg_lua stub, repr arg_lua
insert args, arg_lua insert args, arg_lua
@ -387,7 +388,7 @@ with NomsuCompiler
unless bit_lua.is_value unless bit_lua.is_value
src = ' '..gsub(tostring(recurse(bit)), '\n','\n ') src = ' '..gsub(tostring(recurse(bit)), '\n','\n ')
line = "#{bit.source.filename}:#{files.get_line_number(files.read(bit.source.filename), bit.source.start)}" line = "#{bit.source.filename}:#{files.get_line_number(files.read(bit.source.filename), bit.source.start)}"
@compile_error bit, @compile_error bit.source,
"Cannot use:\n%s\nas a string interpolation value, since it's not an expression." "Cannot use:\n%s\nas a string interpolation value, since it's not an expression."
if #lua.bits > 0 then lua\append ".." if #lua.bits > 0 then lua\append ".."
if bit.type != "Text" if bit.type != "Text"
@ -408,7 +409,7 @@ with NomsuCompiler
for i, item in ipairs tree for i, item in ipairs tree
item_lua = @compile(item) item_lua = @compile(item)
unless item_lua.is_value unless item_lua.is_value
@compile_error item, @compile_error item.source,
"Cannot use:\n%s\nas a list item, since it's not an expression." "Cannot use:\n%s\nas a list item, since it's not an expression."
items[i] = item_lua items[i] = item_lua
lua\concat_append(items, ", ", ",\n ") lua\concat_append(items, ", ", ",\n ")
@ -425,11 +426,11 @@ with NomsuCompiler
key, value = tree[1], tree[2] key, value = tree[1], tree[2]
key_lua = @compile(key) key_lua = @compile(key)
unless key_lua.is_value unless key_lua.is_value
@compile_error tree[1], @compile_error tree[1].source,
"Cannot use:\n%s\nas a dict key, since it's not an expression." "Cannot use:\n%s\nas a dict key, since it's not an expression."
value_lua = value and @compile(value) or LuaCode.Value(key.source, "true") value_lua = value and @compile(value) or LuaCode.Value(key.source, "true")
unless value_lua.is_value unless value_lua.is_value
@compile_error tree[2], @compile_error tree[2].source,
"Cannot use:\n%s\nas a dict value, since it's not an expression." "Cannot use:\n%s\nas a dict value, since it's not an expression."
-- TODO: support arbitrary words here, like operators and unicode -- TODO: support arbitrary words here, like operators and unicode
key_str = match(tostring(key_lua), [=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=]) key_str = match(tostring(key_lua), [=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=])
@ -446,7 +447,7 @@ with NomsuCompiler
when "IndexChain" when "IndexChain"
lua = @compile(tree[1]) lua = @compile(tree[1])
unless lua.is_value unless lua.is_value
@compile_error tree[1], @compile_error tree[1].source,
"Cannot index:\n%s\nsince it's not an expression." "Cannot index:\n%s\nsince it's not an expression."
first_char = sub(tostring(lua),1,1) first_char = sub(tostring(lua),1,1)
if first_char == "{" or first_char == '"' or first_char == "[" if first_char == "{" or first_char == '"' or first_char == "["
@ -456,7 +457,7 @@ with NomsuCompiler
key = tree[i] key = tree[i]
key_lua = @compile(key) key_lua = @compile(key)
unless key_lua.is_value unless key_lua.is_value
@compile_error key, @compile_error key.source,
"Cannot use:\n%s\nas an index, since it's not an expression." "Cannot use:\n%s\nas an index, since it's not an expression."
key_lua_str = tostring(key_lua) key_lua_str = tostring(key_lua)
if lua_id = match(key_lua_str, "^['\"]([a-zA-Z_][a-zA-Z0-9_]*)['\"]$") if lua_id = match(key_lua_str, "^['\"]([a-zA-Z_][a-zA-Z0-9_]*)['\"]$")
@ -539,7 +540,7 @@ with NomsuCompiler
return nomsu return nomsu
else else
pos = tree.source.start pos = tree.source.start
nomsu = NomsuCode(tree.source, pop_comments(pos, '\n')) nomsu = NomsuCode(tree.source, pop_comments(pos))
next_space = "" next_space = ""
for i,bit in ipairs tree for i,bit in ipairs tree
if match(next_space, '\n') if match(next_space, '\n')

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
#.. #..
Tests for the stuff defined in core/control_flow.nom Tests for the stuff defined in core/control_flow.nom
use "core" use "core"

View File

@ -1,3 +1,3 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
use "lib/consolecolor.nom" use "lib/consolecolor.nom"
say (bright (green "Color test passed.")) say (bright (green "Color test passed."))

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
Tests for the stuff defined in core/control_flow.nom Tests for the stuff defined in core/control_flow.nom
@ -107,37 +107,35 @@ for %key = %value in {x: 1, y: 2}:
do next %value do next %value
barf "skipping value failed" barf "skipping value failed"
action [barfer] (barf "this should never be reached") action [barfer]: barf "this should never be reached"
when: if:
* (no) (barf "'when' fail") (no): barf "'when' fail"
* (no) (no) (3 > 4): barf "'when' fail 2"
* (3 > 4) (barf "'when' fail 2") (yes) (barfer): do nothing
* (yes) (99 > 1): barf "Fell through incorrectly"
* (barfer) (do nothing)
* (99 > 1) (barf "Fell through incorrectly")
%else_worked = (no) %else_worked = (no)
when: if:
* (no) (barf) (no): barf
*else (%else_worked = (yes)) else: %else_worked = (yes)
assume %else_worked or barf "when..else failed" assume %else_worked or barf "when..else failed"
action [test when scope] (when (* (yes) (%leaked = (yes)))) action [test when scope]:
if (yes): %leaked = (yes)
test when scope test when scope
assume (not %leaked) or barf "'when' is leaking locals" assume (not %leaked) or barf "'when' is leaking locals"
%when_worked = (no) %when_worked = (no)
when 4 = ?: if 4 is:
* 1 1 2: barf "'when = ?' fail"
* 2 (barf "'when = ?' fail") 3 4 (barfer): %when_worked = (yes)
* 3
* 4
* (barfer) (%when_worked = (yes))
assume %when_worked assume %when_worked
%when_worked = (no) %when_worked = (no)
when 5 = ?: if 5 is:
* 6 (barf) 6: barf
*else (%when_worked = (yes)) else: %when_worked = (yes)
assume %when_worked assume %when_worked
%x = 1 %x = 1
@ -149,8 +147,7 @@ assume (..)
%n = 0 %n = 0
for % in [1, 2, 3]: %n += % for % in [1, 2, 3]: %n += %
return %n return %n
..== 6 .. == 6
%t = [1, [2, [[3], 4], 5, [[[6]]]]] %t = [1, [2, [[3], 4], 5, [[[6]]]]]
%flat = [] %flat = []
for % in recursive %t: for % in recursive %t:

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
Tests for the stuff defined in core/control_flow.nom Tests for the stuff defined in core/control_flow.nom

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
Tests for the stuff defined in core/errors.nom Tests for the stuff defined in core/errors.nom

View File

@ -1,3 +1,3 @@
#!/usr/bin/env nomsu -V1 #!/usr/bin/env nomsu -V2.4.4.3
use "core" use "core"
say "Inner directory 'use' test passed." say "Inner directory 'use' test passed."

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
#.. #..
Tests for the stuff defined in core/control_flow.nom Tests for the stuff defined in core/control_flow.nom
use "core" use "core"

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
Tests for the stuff defined in core/metaprogramming.nom Tests for the stuff defined in core/metaprogramming.nom
@ -68,4 +68,4 @@ lua> %code
assume (=lua "global_x") or barf "Running lua from a variable failed." assume (=lua "global_x") or barf "Running lua from a variable failed."
%code = (Lua value "global_x") %code = (Lua value "global_x")
assume (=lua %code) or barf "Running lua from a variable failed." assume (=lua %code) or barf "Running lua from a variable failed."
say "Metaprogramming test passed." say "Metaprogramming test passed."

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
Tests for the object model defined in lib/object.nom Tests for the object model defined in lib/object.nom

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
#.. #..
Tests for the stuff defined in core/operators.nom Tests for the stuff defined in core/operators.nom
use "core" use "core"
@ -69,4 +69,4 @@ assume (%x == 2) or barf "+<- failed"
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"
say "Operator test passed." say "Operator test passed."

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
# #
Tests for the stuff defined in lib/os.nom Tests for the stuff defined in lib/os.nom

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
use "core" use "core"
%x = "outer" %x = "outer"
with local %x: with local %x:

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V2.3.4.3 #!/usr/bin/env nomsu -V2.4.4.3
#.. #..
Tests for the stuff defined in core/text.nom Tests for the stuff defined in core/text.nom
use "core" use "core"
@ -40,10 +40,9 @@ assume (..)
..== "one\ntwo" ..== "one\ntwo"
assume ("nogap" == "nogap") assume ("nogap" == "nogap")
#comment #comment
# #
block comment block comment
say "Text test passed." say "Text test passed."

View File

@ -1,4 +1,4 @@
#!/usr/bin/env Nomsu -V2.3.4.3 #!/usr/bin/env Nomsu -V2.4.4.3
use "core" use "core"
use "compatibility" use "compatibility"
use "lib/os.nom" use "lib/os.nom"
@ -8,14 +8,25 @@ use "lib/os.nom"
if (%args.1 is "-i"): if (%args.1 is "-i"):
%inplace = (yes) %inplace = (yes)
remove index 1 from %args remove index 1 from %args
if (%args.1 is "-t"):
use "lib/consolecolor.nom"
%test = (yes)
remove index 1 from %args
for %path in %args: for %path in %args:
if (%path is "-i"): %inplace = (yes) if (%path is "-i"): %inplace = (yes)
for file %filename in %path: for file %filename in %path:
%tree = (parse (read file %filename) from %filename) %tree = (parse (read file %filename) from %filename)
%tree = (%tree upgraded from %tree.version to (Nomsu version)) %uptree = (%tree upgraded from %tree.version to (Nomsu version))
%text = "#!/usr/bin/env nomsu -V\(Nomsu version)\n\(%tree as nomsu)" %text = "#!/usr/bin/env nomsu -V\(Nomsu version)\n\(%uptree as nomsu)"
if %inplace: if:
write %text to file %filename %inplace:
..else: say "Upgraded \%filename"
say %text write %text to file %filename
%test:
if (%uptree == %tree):
say (dim "\%filename will not be changed")
..else:
say (bright "\%filename will be changed")
else:
say %text