nomsu/core/text.nom

79 lines
2.1 KiB
Plaintext
Raw Normal View History

2018-12-31 00:20:07 -08:00
#!/usr/bin/env nomsu -V6.13.12.8
2018-05-15 18:55:55 -07:00
#
This file contains some definitions of text escape sequences, including ANSI console
color codes.
use "core/metaprogramming.nom"
use "core/operators.nom"
use "core/control_flow.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test:
assume "\[1, 2, 3]" == "[1, 2, 3]"
assume "foo = \(1 + 2)!" == "foo = 3!"
2018-12-30 19:04:34 -08:00
assume ("
one
two
") == ("
one
two
")
2018-12-14 20:21:03 -08:00
assume "nogap" == "nogap"
2018-12-30 19:04:34 -08: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"
2018-12-30 23:58:47 -08:00
assume
("
one
two
"), lines
..== ["one", "two", ""]
2018-12-14 20:21:03 -08:00
($spec とは $body) parses as ($spec means $body)
test:
2018-12-14 20:21:03 -08:00
$こんにちは = "こんにちは"
($ と言う) とは "\($)世界"
assume ($こんにちは と言う) == "こんにちは世界"
2018-12-14 20:21:03 -08:00
($expr for $match in $text matching $patt) compiles to:
define mangler
2018-12-30 19:04:34 -08:00
return
Lua ("
2018-12-14 20:21:03 -08:00
(function()
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)
end
return \(mangle "comprehension")
2018-12-30 19:04:34 -08:00
end)()
")
test:
assume "\n" == (newline)
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):
2018-12-30 19:04:34 -08:00
return ("-0x%X", formatted with (- $num))
..else:
2018-12-30 19:04:34 -08:00
return ("0x%X", formatted with $num)
# Text literals
2018-12-30 19:04:34 -08:00
$escapes = {
.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:
2018-12-30 19:04:34 -08:00
with [$lua = (Lua (quote $str))]:
2018-12-14 20:21:03 -08:00
$compile.action.$name = (-> $lua)