Updated all the code to work with the latest nomsu.
This commit is contained in:
parent
18365e02b1
commit
0750d64262
@ -1,48 +1,38 @@
|
|||||||
require "lib/core.nom"
|
require "lib/core.nom"
|
||||||
|
|
||||||
test: say "foo" ..yields ".."
|
test: say "foo"
|
||||||
|
..yields ".."
|
||||||
|Call [say %]:
|
|Call [say %]:
|
||||||
| "foo"
|
| "foo"
|
||||||
|
|
||||||
test: say (4) ..yields ".."
|
test: say (foo)
|
||||||
|
..yields ".."
|
||||||
|Call [say %]:
|
|Call [say %]:
|
||||||
| 4
|
| Call [foo]!
|
||||||
|
|
||||||
test:
|
test:
|
||||||
rule: fart ..=: say "poot"
|
rule [fart] =: say "poot"
|
||||||
..yields ".."
|
..yields ".."
|
||||||
|Call [rule % = %]:
|
|Call [rule % = %]:
|
||||||
| Thunk:
|
| List:
|
||||||
| Call [fart]!
|
| Call [fart]!
|
||||||
| Thunk:
|
| Thunk:
|
||||||
| Call [say %]:
|
| Call [say %]:
|
||||||
| "poot"
|
| "poot"
|
||||||
|
|
||||||
test:
|
test: say (subexpressions work)
|
||||||
rule: doublefart ..=:
|
|
||||||
say "poot"
|
|
||||||
say "poot"
|
|
||||||
..yields ".."
|
..yields ".."
|
||||||
|Call [rule % = %]:
|
|
||||||
| Thunk:
|
|
||||||
| Call [doublefart]!
|
|
||||||
| Thunk:
|
|
||||||
| Call [say %]:
|
|
||||||
| "poot"
|
|
||||||
| Call [say %]:
|
|
||||||
| "poot"
|
|
||||||
|
|
||||||
test: say (subexpressions work) ..yields ".."
|
|
||||||
|Call [say %]:
|
|Call [say %]:
|
||||||
| Call [subexpressions work]!
|
| Call [subexpressions work]!
|
||||||
|
|
||||||
test: say ["lists", "work"] ..yields ".."
|
test: say ["lists", "work"]
|
||||||
|
..yields ".."
|
||||||
|Call [say %]:
|
|Call [say %]:
|
||||||
| List:
|
| List:
|
||||||
| "lists"
|
| "lists"
|
||||||
| "work"
|
| "work"
|
||||||
|
|
||||||
test: say [] ..yields ".."
|
test (: say []) yields ".."
|
||||||
|Call [say %]:
|
|Call [say %]:
|
||||||
| <Empty List>
|
| <Empty List>
|
||||||
|
|
||||||
@ -71,28 +61,6 @@ test:
|
|||||||
| 3
|
| 3
|
||||||
| 4
|
| 4
|
||||||
|
|
||||||
test:
|
|
||||||
say both..
|
|
||||||
"hello"
|
|
||||||
and "world"
|
|
||||||
..yields ".."
|
|
||||||
|Call [say both % and %]:
|
|
||||||
| "hello"
|
|
||||||
| "world"
|
|
||||||
|
|
||||||
test:
|
|
||||||
say both ..
|
|
||||||
"a list:"
|
|
||||||
and [..]
|
|
||||||
1,2,(three),(4)
|
|
||||||
..yields ".."
|
|
||||||
|Call [say both % and %]:
|
|
||||||
| "a list:"
|
|
||||||
| List:
|
|
||||||
| 1
|
|
||||||
| 2
|
|
||||||
| Call [three]!
|
|
||||||
| 4
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
if 1: yes
|
if 1: yes
|
||||||
@ -106,7 +74,7 @@ test:
|
|||||||
| Call [no]!
|
| Call [no]!
|
||||||
|
|
||||||
test:
|
test:
|
||||||
if 1: yes ..else: no
|
if 1 (: yes) else: no
|
||||||
..yields ".."
|
..yields ".."
|
||||||
|Call [if % % else %]:
|
|Call [if % % else %]:
|
||||||
| 1
|
| 1
|
||||||
@ -173,10 +141,11 @@ test: say (1 + (-(2 * 3)))
|
|||||||
test:
|
test:
|
||||||
if %x:
|
if %x:
|
||||||
x
|
x
|
||||||
..else: if %y:
|
|
||||||
y
|
|
||||||
..else:
|
..else:
|
||||||
z
|
if %y:
|
||||||
|
y
|
||||||
|
..else:
|
||||||
|
z
|
||||||
..yields ".."
|
..yields ".."
|
||||||
|Call [if % % else %]:
|
|Call [if % % else %]:
|
||||||
| Var[x]
|
| Var[x]
|
||||||
|
@ -97,40 +97,31 @@ say (..)
|
|||||||
3 * 4
|
3 * 4
|
||||||
|
|
||||||
when:
|
when:
|
||||||
when %x == 1:
|
? %x == 1:
|
||||||
say "one"
|
say "one"
|
||||||
when %x == 2:
|
? %x == 2:
|
||||||
say "two"
|
say "two"
|
||||||
when %x:
|
? %x:
|
||||||
say "nonzero"
|
say "nonzero"
|
||||||
else:
|
?:
|
||||||
say "???"
|
say "???"
|
||||||
|
|
||||||
when:
|
when %x:
|
||||||
* %x == 1:
|
== 1:
|
||||||
say "one"
|
say "one"
|
||||||
* %x == 2:
|
== 2:
|
||||||
say "two"
|
say "two"
|
||||||
* %x:
|
==:
|
||||||
say "nonzero"
|
|
||||||
*:
|
|
||||||
say "???"
|
|
||||||
|
|
||||||
when %x ==:
|
|
||||||
* 1:
|
|
||||||
say "one"
|
|
||||||
* 2:
|
|
||||||
say "two"
|
|
||||||
*:
|
|
||||||
say "???"
|
say "???"
|
||||||
|
|
||||||
|
|
||||||
if %x:
|
if %x:
|
||||||
say "one"
|
say "one"
|
||||||
..else: if %y:
|
|
||||||
say "two"
|
|
||||||
..else:
|
..else:
|
||||||
say "three"
|
if %y:
|
||||||
|
say "two"
|
||||||
|
..else:
|
||||||
|
say "three"
|
||||||
|
|
||||||
|
|
||||||
say ".."
|
say ".."
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
continue until dedent
|
continue until dedent
|
||||||
|
|
||||||
# Import files like so:
|
# Import files like so:
|
||||||
require "core.nom"
|
require "lib/core.nom"
|
||||||
|
|
||||||
# Numbers:
|
# Numbers:
|
||||||
23
|
23
|
||||||
@ -114,8 +114,8 @@ do:
|
|||||||
|
|
||||||
# Function definition:
|
# Function definition:
|
||||||
rule [say both %first and also %second] =:
|
rule [say both %first and also %second] =:
|
||||||
# Function arguments are accessed just like variables
|
|
||||||
say %first
|
say %first
|
||||||
|
# Function arguments are accessed just like variables
|
||||||
say %second
|
say %second
|
||||||
|
|
||||||
# The last line of a function is the return value
|
# The last line of a function is the return value
|
||||||
@ -192,29 +192,16 @@ say (2 ++ 3)
|
|||||||
"say both %first and also %second", and a code block to a function called "rule % %"
|
"say both %first and also %second", and a code block to a function called "rule % %"
|
||||||
that takes two arguments.
|
that takes two arguments.
|
||||||
|
|
||||||
# Line continuations work by either ending a line with ".." and continuing with an indented block:
|
# Line continuations work by starting the next line with ".."
|
||||||
say..
|
|
||||||
both "Tom" and
|
|
||||||
also
|
|
||||||
"Sawyer"
|
|
||||||
|
|
||||||
# Or by starting the next line with ".."
|
|
||||||
say both "Bruce"
|
say both "Bruce"
|
||||||
..and also "Lee"
|
..and also "Lee"
|
||||||
|
|
||||||
# This can be mixed and matched:
|
# This can be combined with the block forms of literals:
|
||||||
say both..
|
|
||||||
"Rick"
|
|
||||||
..and also..
|
|
||||||
"Moranis"
|
|
||||||
|
|
||||||
# And combined with the block forms of literals:
|
|
||||||
say both ".."
|
say both ".."
|
||||||
|Four score and seven years ago our fathers brought forth, upon this continent,
|
|Four score and seven years ago our fathers brought forth, upon this continent,
|
||||||
|a new nation, conceived in liberty, and dedicated to the proposition that
|
|a new nation, conceived in liberty, and dedicated to the proposition that
|
||||||
|"all men are created equal"
|
|"all men are created equal"
|
||||||
..and also..
|
..and also "-- Abraham Lincoln"
|
||||||
"-- Abraham Lincoln"
|
|
||||||
|
|
||||||
rule [my favorite number] =: 21 + 2
|
rule [my favorite number] =: 21 + 2
|
||||||
|
|
||||||
@ -223,7 +210,7 @@ say (my favorite number)
|
|||||||
# There's a multi-line indented block form for subexpressions too:
|
# There's a multi-line indented block form for subexpressions too:
|
||||||
say (..)
|
say (..)
|
||||||
my favorite
|
my favorite
|
||||||
number
|
..number
|
||||||
|
|
||||||
# Block strings can interpolate values by enclosing an expression in a pair of \s
|
# Block strings can interpolate values by enclosing an expression in a pair of \s
|
||||||
say ".."|My favorite number is \my favorite number\!
|
say ".."|My favorite number is \my favorite number\!
|
||||||
@ -231,7 +218,7 @@ say ".."|My favorite number is \my favorite number\!
|
|||||||
say ".."
|
say ".."
|
||||||
|My favorite number is still \(..)
|
|My favorite number is still \(..)
|
||||||
my favorite
|
my favorite
|
||||||
number
|
..number
|
||||||
..\, but this time it uses an indented subexpression!
|
..\, but this time it uses an indented subexpression!
|
||||||
|
|
||||||
rule [sing %starting-bottles bottles of beer] =:
|
rule [sing %starting-bottles bottles of beer] =:
|
||||||
@ -278,7 +265,7 @@ say ".."|The square root of 2 is \square root of 2\
|
|||||||
# "macro block %" is for defining macros that produce blocks of code, not values
|
# "macro block %" is for defining macros that produce blocks of code, not values
|
||||||
macro block [unless %condition %body] =: ".."
|
macro block [unless %condition %body] =: ".."
|
||||||
|if not (\%condition as lua expr\) then
|
|if not (\%condition as lua expr\) then
|
||||||
| \(lua expr "vars.body.value.value") as lua block\
|
| \(lua expr "vars.body.value") as lua block\
|
||||||
|end
|
|end
|
||||||
|
|
||||||
unless (1 > 10):
|
unless (1 > 10):
|
||||||
|
49
lib/core.nom
49
lib/core.nom
@ -356,22 +356,19 @@ macro block [when %body] =:
|
|||||||
for %statement in (lua expr "vars.body.value.value"):
|
for %statement in (lua expr "vars.body.value.value"):
|
||||||
%func-call =: lua expr "vars.statement.value"
|
%func-call =: lua expr "vars.statement.value"
|
||||||
if ((lua expr "vars['func-call'].type") != "FunctionCall"):
|
if ((lua expr "vars['func-call'].type") != "FunctionCall"):
|
||||||
error "Invalid format for 'when' statement"
|
error "Invalid format for 'when' statement. Only '?' blocks are allowed."
|
||||||
%tokens =: lua expr "vars['func-call'].value"
|
%tokens =: lua expr "vars['func-call'].value"
|
||||||
%q =: lua expr "vars.tokens[1]"
|
%q =: lua expr "vars.tokens[1]"
|
||||||
if (((lua expr "vars.q.type") != "Word") or ((lua expr "vars.q.value") != "?")):
|
if (((lua expr "vars.q.type") != "Word") or ((lua expr "vars.q.value") != "?")):
|
||||||
error "Invalid format for 'when' statement"
|
error "Invalid format for 'when' statement. Lines must begin with '?'"
|
||||||
%thunk =: lua expr "vars.tokens[#vars.tokens]"
|
%thunk =: lua expr "vars.tokens[#vars.tokens]"
|
||||||
if ((lua expr "vars.thunk.type") != "Thunk"):
|
if ((lua expr "vars.thunk.type") != "Thunk"):
|
||||||
error "Invalid format for 'when' statement"
|
error "Invalid format for 'when' statement. Lines must have a body."
|
||||||
%condition_bits =: []
|
%condition_bits =: []
|
||||||
for %i in (2 up to (lua expr "#vars.tokens")):
|
for %i in (2 up to (lua expr "#vars.tokens")):
|
||||||
lua block "table.insert(vars['condition_bits'], vars.tokens[vars.i])"
|
lua block "table.insert(vars['condition_bits'], vars.tokens[vars.i])"
|
||||||
%condition =: dict [..]
|
|
||||||
["type",lua expr "vars['func-call'].type"]
|
if (lua expr "#vars.condition_bits == 0"):
|
||||||
["src",lua expr "vars['func-call'].src"]
|
|
||||||
["value", %condition_bits]
|
|
||||||
if ((lua expr "#vars.condition.value") == 0):
|
|
||||||
%result concat=: ".."
|
%result concat=: ".."
|
||||||
|
|
|
|
||||||
|do
|
|do
|
||||||
@ -380,6 +377,13 @@ macro block [when %body] =:
|
|||||||
| return ret
|
| return ret
|
||||||
|end
|
|end
|
||||||
..else:
|
..else:
|
||||||
|
if (lua expr "#vars.condition_bits == 1 and vars.condition_bits[1].type ~= 'Word'"):
|
||||||
|
%condition =: lua expr "vars.condition_bits[1]"
|
||||||
|
..else:
|
||||||
|
%condition =: dict [..]
|
||||||
|
["type",lua expr "vars['func-call'].type"]
|
||||||
|
["src",lua expr "vars['func-call'].src"]
|
||||||
|
["value", %condition_bits]
|
||||||
%result concat=: ".."
|
%result concat=: ".."
|
||||||
|
|
|
|
||||||
|if \%condition as lua expr\ then
|
|if \%condition as lua expr\ then
|
||||||
@ -387,6 +391,7 @@ macro block [when %body] =:
|
|||||||
| \(lua expr "vars.thunk.value") as lua block\
|
| \(lua expr "vars.thunk.value") as lua block\
|
||||||
| return ret
|
| return ret
|
||||||
|end
|
|end
|
||||||
|
|
||||||
%result
|
%result
|
||||||
|
|
||||||
# Switch statement
|
# Switch statement
|
||||||
@ -395,14 +400,14 @@ macro block [when %branch-value %body] =:
|
|||||||
for %statement in (lua expr "vars.body.value.value"):
|
for %statement in (lua expr "vars.body.value.value"):
|
||||||
%func-call =: lua expr "vars.statement.value"
|
%func-call =: lua expr "vars.statement.value"
|
||||||
if ((lua expr "vars['func-call'].type") != "FunctionCall"):
|
if ((lua expr "vars['func-call'].type") != "FunctionCall"):
|
||||||
error "Invalid format for 'when' statement"
|
error "Invalid format for 'when' statement. Only == blocks are allowed."
|
||||||
%tokens =: lua expr "vars['func-call'].value"
|
%tokens =: lua expr "vars['func-call'].value"
|
||||||
%eq =: lua expr "vars.tokens[1]"
|
%eq =: lua expr "vars.tokens[1]"
|
||||||
if (((lua expr "vars.eq.type") != "Word") or ((lua expr "vars.eq.value") != "==")):
|
if (((lua expr "vars.eq.type") != "Word") or ((lua expr "vars.eq.value") != "==")):
|
||||||
error "Invalid format for 'when' statement"
|
error "Invalid format for 'when' statement. Lines must begin with '=='"
|
||||||
%thunk =: lua expr "vars.tokens[#vars.tokens]"
|
%thunk =: lua expr "vars.tokens[#vars.tokens]"
|
||||||
if ((lua expr "vars.thunk.type") != "Thunk"):
|
if ((lua expr "vars.thunk.type") != "Thunk"):
|
||||||
error "Invalid format for 'when' statement"
|
error "Invalid format for 'when' statement. Lines must have a body."
|
||||||
%condition_bits =: []
|
%condition_bits =: []
|
||||||
for %i in (2 up to (lua expr "#vars.tokens")):
|
for %i in (2 up to (lua expr "#vars.tokens")):
|
||||||
lua block "table.insert(vars.condition_bits, vars.tokens[vars.i])"
|
lua block "table.insert(vars.condition_bits, vars.tokens[vars.i])"
|
||||||
@ -416,25 +421,19 @@ macro block [when %branch-value %body] =:
|
|||||||
|end
|
|end
|
||||||
..else:
|
..else:
|
||||||
if (lua expr "#vars.condition_bits == 1 and vars.condition_bits[1].type ~= 'Word'"):
|
if (lua expr "#vars.condition_bits == 1 and vars.condition_bits[1].type ~= 'Word'"):
|
||||||
%result concat=: ".."
|
%condition =: (lua expr "vars.condition_bits[1]")
|
||||||
|
|
|
||||||
|if compiler.utils.equivalent(branch_value, \(lua expr "vars.condition_bits[1]") as lua expr\) then
|
|
||||||
| local ret
|
|
||||||
| \(lua expr "vars.thunk.value") as lua block\
|
|
||||||
| return ret
|
|
||||||
|end
|
|
||||||
..else:
|
..else:
|
||||||
%condition =: dict [..]
|
%condition =: dict [..]
|
||||||
["type",lua expr "vars['func-call'].type"]
|
["type",lua expr "vars['func-call'].type"]
|
||||||
["src",lua expr "vars['func-call'].src"]
|
["src",lua expr "vars['func-call'].src"]
|
||||||
["value", %condition_bits]
|
["value", %condition_bits]
|
||||||
%result concat=: ".."
|
%result concat=: ".."
|
||||||
|
|
|
|
||||||
|if compiler.utils.equivalent(branch_value, \%condition as lua expr\) then
|
|if compiler.utils.equivalent(branch_condition, \%condition as lua expr\) then
|
||||||
| local ret
|
| local ret
|
||||||
| \(lua expr "vars.thunk.value") as lua block\
|
| \(lua expr "vars.thunk.value") as lua block\
|
||||||
| return ret
|
| return ret
|
||||||
|end
|
|end
|
||||||
%result
|
%result
|
||||||
|
|
||||||
# List Comprehension
|
# List Comprehension
|
||||||
|
@ -321,7 +321,7 @@ do
|
|||||||
(dedent / longstring_error)) |} }) -> Longstring
|
(dedent / longstring_error)) |} }) -> Longstring
|
||||||
longstring_line <- "|" {| ({("\\" / (!string_interpolation [^%nl]))+} / string_interpolation)* |}
|
longstring_line <- "|" {| ({("\\" / (!string_interpolation [^%nl]))+} / string_interpolation)* |}
|
||||||
longstring_error <- (({.+} ("" -> "Error while parsing Longstring")) => error)
|
longstring_error <- (({.+} ("" -> "Error while parsing Longstring")) => error)
|
||||||
string_interpolation <- "\" %ws? (inline_functioncall / expression) %ws? "\"
|
string_interpolation <- "\" %ws? (((inline_functioncall / expression) dotdot?) / dotdot) %ws? "\"
|
||||||
|
|
||||||
number <- ({ {"-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)) } }) -> Number
|
number <- ({ {"-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)) } }) -> Number
|
||||||
|
|
||||||
|
@ -229,7 +229,7 @@ class NomsuCompiler
|
|||||||
(dedent / longstring_error)) |} }) -> Longstring
|
(dedent / longstring_error)) |} }) -> Longstring
|
||||||
longstring_line <- "|" {| ({("\\" / (!string_interpolation [^%nl]))+} / string_interpolation)* |}
|
longstring_line <- "|" {| ({("\\" / (!string_interpolation [^%nl]))+} / string_interpolation)* |}
|
||||||
longstring_error <- (({.+} ("" -> "Error while parsing Longstring")) => error)
|
longstring_error <- (({.+} ("" -> "Error while parsing Longstring")) => error)
|
||||||
string_interpolation <- "\" %ws? (inline_functioncall / expression) %ws? "\"
|
string_interpolation <- "\" %ws? (((inline_functioncall / expression) dotdot?) / dotdot) %ws? "\"
|
||||||
|
|
||||||
number <- ({ {"-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)) } }) -> Number
|
number <- ({ {"-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)) } }) -> Number
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user