2018-10-30 23:42:04 -07:00
|
|
|
#!/usr/bin/env nomsu -V4.8.10
|
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-11-08 15:23:22 -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-09-14 19:17:09 -07:00
|
|
|
assume "one\ntwo" == "\
|
|
|
|
..one
|
|
|
|
two"
|
|
|
|
assume "nogap" == "\
|
|
|
|
..no\
|
|
|
|
..gap"
|
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-11-06 15:13:55 -08:00
|
|
|
(%spec とは %body) parses as (%spec means %body)
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
|
|
|
%こんにちは = "こんにちは"
|
2018-11-06 15:13:55 -08:00
|
|
|
(% と言う) とは "\(%)世界"
|
2018-09-10 15:55:34 -07:00
|
|
|
assume (%こんにちは と言う) == "こんにちは世界"
|
2018-11-09 14:36:15 -08:00
|
|
|
(%expr for %match in %text matching %patt) compiles to:
|
|
|
|
define mangler
|
|
|
|
return (..)
|
|
|
|
Lua "\
|
|
|
|
..(function()
|
|
|
|
local \(mangle "comprehension") = _List{}
|
|
|
|
for \(%match as lua expr) in (\(%text as lua expr)):gmatch(\(..)
|
|
|
|
%patt as lua expr
|
|
|
|
..) do
|
|
|
|
\(mangle "comprehension")[#\(mangle "comprehension")+1] = \(%expr as lua statements)
|
|
|
|
end
|
|
|
|
return \(mangle "comprehension")
|
|
|
|
end)()"
|
2018-07-09 17:13:40 -07:00
|
|
|
|
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-09-14 19:17:09 -07:00
|
|
|
lua> "\
|
|
|
|
..do
|
2018-01-25 17:34:49 -08:00
|
|
|
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-11-08 15:23:22 -08:00
|
|
|
compile.action[name] = function(compile, tree)
|
|
|
|
return LuaCode(tree.source, lua)
|
2018-07-17 23:08:13 -07:00
|
|
|
end
|
2018-01-25 17:34:49 -08:00
|
|
|
end
|
2018-09-14 19:17:09 -07:00
|
|
|
end"
|