2018-12-14 20:21:03 -08:00
|
|
|
#!/usr/bin/env nomsu -V5.12.12.8
|
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-11-11 15:50:46 -08:00
|
|
|
|
2018-02-02 15:48:28 -08:00
|
|
|
use "core/metaprogramming.nom"
|
2018-11-09 16:40:36 -08:00
|
|
|
use "core/operators.nom"
|
|
|
|
use "core/control_flow.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-12-14 20:21:03 -08:00
|
|
|
assume "one\ntwo" == "one\ntwo"
|
|
|
|
assume "nogap" == "nogap"
|
|
|
|
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", ""]
|
|
|
|
($spec とは $body) parses as ($spec means $body)
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
2018-12-14 20:21:03 -08:00
|
|
|
$こんにちは = "こんにちは"
|
|
|
|
($ と言う) とは "\($)世界"
|
|
|
|
assume ($こんにちは と言う) == "こんにちは世界"
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
($expr for $match in $text matching $patt) compiles to:
|
2018-11-09 14:36:15 -08:00
|
|
|
define mangler
|
|
|
|
return (..)
|
2018-12-14 20:21:03 -08:00
|
|
|
Lua "
|
|
|
|
(function()
|
2018-11-09 17:02:39 -08:00
|
|
|
local \(mangle "comprehension") = List{}
|
2018-12-14 20:21:03 -08:00
|
|
|
for \($match as lua expr) in (\($text as lua expr)):gmatch(\($patt as lua expr)) do
|
|
|
|
\(mangle "comprehension")[#\(mangle "comprehension")+1] = \($expr as lua)
|
2018-11-09 14:36:15 -08:00
|
|
|
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-11-11 18:52:45 -08:00
|
|
|
test:
|
|
|
|
assume (0xDEADBEEF as hex) == "0xDEADBEEF"
|
2018-11-19 17:37:37 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
externally ($num as hex) means:
|
|
|
|
if ($num < 0):
|
|
|
|
return ("-0x%X"|formatted with (- $num))
|
2018-11-11 18:52:45 -08:00
|
|
|
..else:
|
2018-12-14 20:21:03 -08:00
|
|
|
return ("0x%X"|formatted with $num)
|
2018-11-11 18:52:45 -08:00
|
|
|
|
2018-01-11 18:51:21 -08:00
|
|
|
# Text literals
|
2018-12-14 20:21:03 -08:00
|
|
|
$escapes = {..}
|
2018-11-11 15:50:46 -08: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-12-14 20:21:03 -08:00
|
|
|
for $name = $str in $escapes:
|
|
|
|
with {$lua: Lua (quote $str)}:
|
|
|
|
$compile.action.$name = (-> $lua)
|