2018-08-30 14:16:09 -07:00
|
|
|
#!/usr/bin/env nomsu -V3.7.5.6
|
2018-05-15 18:55:55 -07:00
|
|
|
#
|
2018-01-11 18:51:21 -08:00
|
|
|
This file contains some definitions of text escape sequences, including ANSI console
|
|
|
|
color codes.
|
|
|
|
|
2018-02-02 15:48:28 -08:00
|
|
|
use "core/metaprogramming.nom"
|
2018-01-11 15:27:15 -08:00
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
2018-09-10 15:55:34 -07:00
|
|
|
assume "\[1, 2, 3]" == "[1, 2, 3]"
|
|
|
|
assume "foo = \(1 + 2)!" == "foo = 3!"
|
2018-07-22 16:30:49 -07:00
|
|
|
assume (..)
|
|
|
|
".."
|
|
|
|
one
|
|
|
|
two
|
|
|
|
..== "one\ntwo"
|
|
|
|
assume (..)
|
|
|
|
".."
|
|
|
|
no\
|
|
|
|
..gap
|
|
|
|
..== "nogap"
|
2018-09-10 15:55:34 -07:00
|
|
|
assume (["x", "y"]::joined with ",") == "x,y"
|
|
|
|
assume (["x", "y"]::joined) == "xy"
|
|
|
|
assume ("BAR"::byte 2) == 65
|
|
|
|
assume ("BAR"::bytes 1 to 2) == [66, 65]
|
|
|
|
assume ("asdf"::capitalized) == "Asdf"
|
|
|
|
assume ("asdf"::uppercase) == "ASDF"
|
|
|
|
assume ("asdf"::with "s" -> "X") == "aXdf"
|
|
|
|
assume ("one\ntwo\n"::lines) == ["one", "two", ""]
|
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
parse [アクション %spec %body] as (action %spec %body)
|
|
|
|
test:
|
|
|
|
%こんにちは = "こんにちは"
|
|
|
|
アクション [% と言う] "\(%)世界"
|
2018-09-10 15:55:34 -07:00
|
|
|
assume (%こんにちは と言う) == "こんにちは世界"
|
2018-07-22 16:30:49 -07:00
|
|
|
|
2018-01-11 18:51:21 -08:00
|
|
|
# Text functions
|
2018-09-10 15:55:34 -07:00
|
|
|
parse [%texts joined with %glue] as (%texts::joined with %glue)
|
|
|
|
parse [%texts joined, joined %texts] as (%texts::joined)
|
|
|
|
parse [byte %i of %text] as (%text::byte %i)
|
|
|
|
parse [bytes %start to %stop of %text] as (%text::bytes %start to %stop)
|
|
|
|
parse [bytes of %text] as (%text::bytes)
|
|
|
|
parse [capitalized %text, %text capitalized] as (%text::capitalized)
|
|
|
|
parse [uppercase %text, %text uppercase] as (%text::uppercase)
|
|
|
|
parse [..]
|
2018-07-17 23:08:13 -07:00
|
|
|
%text with %sub instead of %patt, %text with %patt replaced by %sub
|
|
|
|
%text s/ %patt / %sub
|
2018-09-10 15:55:34 -07:00
|
|
|
..as (%text::with %patt -> %sub)
|
|
|
|
parse [%text matches %pattern] as (%text::matches %pattern)
|
|
|
|
parse [%text matching %pattern] as ((%text::matching %pattern).1)
|
2018-06-14 21:59:25 -07:00
|
|
|
|
2018-07-20 17:56:06 -07:00
|
|
|
compile [for %match in %text matching %patt %body] to (..)
|
2018-07-09 17:13:40 -07:00
|
|
|
Lua ".."
|
2018-07-30 13:52:40 -07:00
|
|
|
for \(%match as lua expr) in (\(%text as lua expr)):gmatch(\(%patt as lua expr)) do
|
2018-07-09 17:13:40 -07:00
|
|
|
\(%body as lua statements)
|
2018-07-17 23:08:13 -07:00
|
|
|
\(compile as (===next %match ===))
|
2018-07-09 17:13:40 -07:00
|
|
|
end
|
2018-07-17 23:08:13 -07:00
|
|
|
\(compile as (===stop %match ===))
|
2018-07-09 17:13:40 -07:00
|
|
|
|
2018-07-20 17:56:06 -07:00
|
|
|
compile [%expr for %match in %text matching %patt] to (..)
|
2018-07-09 17:13:40 -07:00
|
|
|
Lua value ".."
|
|
|
|
(function()
|
2018-09-06 12:46:39 -07:00
|
|
|
local ret = _List{}
|
2018-07-30 15:05:41 -07:00
|
|
|
for \(%match as lua expr) in (\(%text as lua expr)):gmatch(\(..)
|
|
|
|
%patt as lua expr
|
|
|
|
..) do
|
2018-07-09 17:13:40 -07:00
|
|
|
ret[#ret+1] = \(%expr as lua statements)
|
|
|
|
end
|
|
|
|
return ret
|
|
|
|
end)()
|
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
2018-09-10 15:55:34 -07:00
|
|
|
assume "\n" == (newline)
|
2018-07-22 16:30:49 -07:00
|
|
|
|
2018-01-11 18:51:21 -08:00
|
|
|
# Text literals
|
2018-01-25 17:34:49 -08:00
|
|
|
lua> ".."
|
|
|
|
do
|
|
|
|
local escapes = {
|
2018-07-17 23:08:13 -07:00
|
|
|
nl="\\\\n", newline="\\\\n", tab="\\\\t", bell="\\\\a", cr="\\\\r",
|
|
|
|
["carriage return"]="\\\\r", backspace="\\\\b", ["form feed"]="\\\\f",
|
|
|
|
formfeed="\\\\f", ["vertical tab"]="\\\\v",
|
2018-01-25 17:34:49 -08:00
|
|
|
};
|
|
|
|
for name, e in pairs(escapes) do
|
2018-06-14 21:59:25 -07:00
|
|
|
local lua = "'"..e.."'"
|
2018-08-27 13:38:58 -07:00
|
|
|
COMPILE_ACTIONS[name] = function(nomsu, tree)
|
2018-07-17 23:08:13 -07:00
|
|
|
return LuaCode.Value(tree.source, lua)
|
|
|
|
end
|
2018-01-25 17:34:49 -08:00
|
|
|
end
|
2018-07-21 14:43:49 -07:00
|
|
|
end
|