2018-07-20 20:27:15 -07:00
|
|
|
#!/usr/bin/env nomsu -V2.5.4.3
|
2018-05-15 18:55:55 -07:00
|
|
|
#
|
2018-01-11 18:51:21 -08:00
|
|
|
This file contains a set of definitions that bring some familiar language features
|
|
|
|
from other languages into nomsu (e.g. "==" and "continue")
|
|
|
|
|
2018-02-02 15:48:28 -08:00
|
|
|
use "core"
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-07-18 01:27:56 -07:00
|
|
|
parse [%a == %b] as (%a = %b)
|
2018-07-17 23:37:20 -07:00
|
|
|
parse [%a == %b] as (%a is %b)
|
|
|
|
parse [%a ~= %b, %a != %b, %a <> %b] as (%a is not %b)
|
|
|
|
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 mod %b] as (%a wrapped around %b)
|
|
|
|
parse [function %names %body, def %names %body] as (action %names %body)
|
2018-07-18 17:55:29 -07:00
|
|
|
parse [switch %branch_value %body] as (if %branch_value is: %body)
|
2018-07-17 23:37:20 -07:00
|
|
|
parse [None, Null] as (nil)
|
|
|
|
parse [True, true] as (yes)
|
|
|
|
parse [False, false] as (no)
|
|
|
|
parse [pass] as (do nothing)
|
|
|
|
parse [%a || %b] as (%a or %b)
|
|
|
|
parse [%a && %b] as (%a and %b)
|
|
|
|
parse [continue] as (do next)
|
|
|
|
parse [break] as (stop)
|
2018-07-18 01:27:56 -07:00
|
|
|
parse [let %thing = %value in %action] as (with [%thing = %value] %action)
|
2018-07-17 23:37:20 -07:00
|
|
|
parse [print %] as (say %)
|
|
|
|
parse [error!, panic!, fail!, abort!] as (barf!)
|
|
|
|
parse [error %, panic %, fail %, abort %] as (barf %)
|
|
|
|
parse [assert %condition %message] as (assume %condition or barf %message)
|
|
|
|
parse [%cond ? %if_true %if_false] as (%if_true if %cond else %if_false)
|
|
|
|
compile [function %args %body, lambda %args %body] to:
|
2018-07-18 01:27:56 -07:00
|
|
|
%lua = (Lua value "(function(")
|
2018-07-17 23:37:20 -07:00
|
|
|
for %i = %arg in %args.value:
|
|
|
|
if (%i > 1): to %lua write ", "
|
|
|
|
to %lua write (%arg as lua expr)
|
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
to %lua write ")\n "
|
2018-07-18 01:27:56 -07:00
|
|
|
%body = (%body as lua)
|
2018-04-25 16:30:49 -07:00
|
|
|
lua> "\%body:convert_to_statements('return ');"
|
2018-07-20 20:27:15 -07:00
|
|
|
for % in %args.value:
|
|
|
|
lua> "\%body:remove_free_vars(\%);"
|
2018-04-25 16:30:49 -07:00
|
|
|
to %lua write %body
|
|
|
|
to %lua write "\nend)"
|
|
|
|
return %lua
|
2018-07-17 23:37:20 -07:00
|
|
|
|
2018-07-18 01:27:56 -07:00
|
|
|
parse [function %name %args %body] as (%name = (function %args %body))
|
2018-07-17 23:37:20 -07:00
|
|
|
compile [call %fn %args] to (..)
|
2018-07-20 20:27:15 -07:00
|
|
|
Lua value "\(%fn as lua expr)(unpack(\(%args as lua expr)))"
|