nomsu/lib/core/text.nom
Bruce Hill 72d699fe86 Bunch of changes:
- Added shebangs to generated code output
- SyntaxTree:map() -> SyntaxTree:with(), and corresponding changes to
metaprogramming API
- Added (return Lua 1) shorthand for (return (Lua 1))
- (1 and 2 and 3) compile rule mapping to -> (1 and (*extra arguments*))
- Don't scan for errors, just report them when compiling
- Syntax changes:
    - Added prefix actions (e.g. #$foo)
    - Operator chars now include utf8 chars
    - Ditch "escaped nomsu" type (use (\ 1) compile action instead)
2019-02-05 15:47:01 -08:00

79 lines
2.1 KiB
Plaintext

#!/usr/bin/env nomsu -V6.15.13.8
#
This file contains some definitions of text escape sequences, including ANSI console
color codes.
use "core/metaprogramming"
use "core/operators"
use "core/control_flow"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test:
assume "\[1, 2, 3]" == "[1, 2, 3]"
assume "foo = \(1 + 2)!" == "foo = 3!"
assume ("
one
two
") == ("
one
two
")
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
two
"), lines
..== ["one", "two", ""]
($spec とは $body) parses as ($spec means $body)
test:
$こんにちは = "こんにちは"
($ と言う) とは "\($)世界"
assume ($こんにちは と言う) == "こんにちは世界"
($expr for $match in $text matching $patt) compiles to:
define mangler
return Lua ("
(function()
local \(mangle "comprehension") = a_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)
end
return \(mangle "comprehension")
end)()
")
test:
assume "\n" == (newline)
test:
assume (0xDEADBEEF as hex) == "0xDEADBEEF"
external:
($num as hex) means:
if ($num < 0):
return ("-0x%X", formatted with (- $num))
..else:
return ("0x%X", formatted with $num)
# Text literals
$escapes = {
.nl = "\n", .newline = "\n", .tab = "\t", .bell = "\a", .cr = "\r"
."carriage return" = "\r", .backspace = "\b", ."form feed" = "\f"
.formfeed = "\f", ."vertical tab" = "\v"
}
for $name = $str in $escapes:
with [$lua = (Lua (quote $str))]:
$(COMPILE RULES).$name = (-> $lua)