2018-07-25 13:49:17 -07:00
|
|
|
#!/usr/bin/env nomsu -V2.5.5.4
|
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:
|
|
|
|
assume (("x" + "y") == "xy")
|
|
|
|
%s = "list:\[1, 2, 3]"
|
|
|
|
assume (%s == "list:[1, 2, 3]")
|
|
|
|
assume ("foo = \(1 + 2)!" == "foo = 3!")
|
|
|
|
assume (..)
|
|
|
|
".."
|
|
|
|
one
|
|
|
|
two
|
|
|
|
..== "one\ntwo"
|
|
|
|
assume (..)
|
|
|
|
".."
|
|
|
|
no\
|
|
|
|
..gap
|
|
|
|
..== "nogap"
|
|
|
|
parse [アクション %spec %body] as (action %spec %body)
|
|
|
|
|
|
|
|
test:
|
|
|
|
%こんにちは = "こんにちは"
|
|
|
|
アクション [% と言う] "\(%)世界"
|
|
|
|
assume ((%こんにちは と言う) == "こんにちは世界") or barf ".."
|
|
|
|
Unicode doesn't work
|
|
|
|
|
2018-01-11 18:51:21 -08:00
|
|
|
# Text functions
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
|
|
|
assume ((["x", "y"] joined with ",") == "x,y") or barf "joined with failed"
|
|
|
|
assume ((["x", "y"] joined) == "xy") or barf "joined failed"
|
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
action [%texts joined with %glue] (..)
|
2018-01-11 18:51:21 -08:00
|
|
|
lua> ".."
|
2018-01-24 13:13:03 -08:00
|
|
|
local text_bits = {}
|
|
|
|
for i,bit in ipairs(\%texts) do text_bits[i] = stringify(bit) end
|
|
|
|
return table.concat(text_bits, \%glue)
|
2018-01-11 15:27:15 -08:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
parse [joined %texts, %texts joined] as (%texts joined with "")
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
|
|
|
assume (("asdf" capitalized) == "Asdf") or barf "capitalized failed"
|
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
compile [capitalized %text, %text capitalized] to (..)
|
2018-04-19 17:23:44 -07:00
|
|
|
Lua value "((\(%text as lua expr)):gsub('%l', string.upper, 1))"
|
2018-01-11 15:27:15 -08:00
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
|
|
|
assume (("asdf" with "X" instead of "s") == "aXdf") or barf ".."
|
|
|
|
substitution failed
|
2018-07-23 14:40:20 -07:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
compile [..]
|
|
|
|
%text with %sub instead of %patt, %text with %patt replaced by %sub
|
|
|
|
%text s/ %patt / %sub
|
|
|
|
..to (..)
|
2018-07-20 20:27:15 -07:00
|
|
|
Lua value ".."
|
|
|
|
((\(%text as lua expr)):gsub(\(%patt as lua expr), \(%sub as lua expr)))
|
2018-01-11 15:27:15 -08:00
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
|
|
|
assume (..)
|
|
|
|
(..)
|
|
|
|
lines in ".."
|
|
|
|
one
|
|
|
|
two
|
|
|
|
..== ["one", "two"]
|
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
action [lines in %text, lines of %text] (..)
|
2018-06-14 21:59:25 -07:00
|
|
|
lua> ".."
|
2018-06-15 00:40:36 -07:00
|
|
|
local result = list{}
|
2018-07-17 23:08:13 -07:00
|
|
|
for line in (\%text):gmatch('[^\\n]+') do
|
2018-06-14 21:59:25 -07:00
|
|
|
result[#result+1] = line
|
|
|
|
end
|
|
|
|
return result
|
|
|
|
|
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 ".."
|
|
|
|
for \(%match as lua expr) in \(%text as lua expr):gmatch(\(%patt as lua expr)) do
|
|
|
|
\(%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()
|
|
|
|
local ret = list{}
|
|
|
|
for \(%match as lua expr) in \(%text as lua expr):gmatch(\(%patt as lua expr)) do
|
|
|
|
ret[#ret+1] = \(%expr as lua statements)
|
|
|
|
end
|
|
|
|
return ret
|
|
|
|
end)()
|
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
compile [%text matches %pattern] to (..)
|
2018-07-20 20:27:15 -07:00
|
|
|
Lua value ".."
|
|
|
|
(\(%text as lua expr):match(\(%pattern as lua expr)) and true or false)
|
2018-07-11 14:13:43 -07:00
|
|
|
|
2018-07-21 14:43:49 -07:00
|
|
|
compile [%text matching %pattern] to (..)
|
2018-07-22 15:01:05 -07:00
|
|
|
Lua value "\(%text as lua expr):match(\(%pattern as lua expr))"
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
|
|
|
assume ("\n" == (newline)) or barf "Text literals failed."
|
|
|
|
|
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-07-17 23:08:13 -07:00
|
|
|
nomsu.COMPILE_ACTIONS[name] = function(nomsu, tree)
|
|
|
|
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
|