Simplifying.

This commit is contained in:
Bruce Hill 2018-07-30 13:54:40 -07:00
parent 0d48b5add8
commit 43e8da1780

View File

@ -53,12 +53,12 @@ compile [bytes %start to %stop of %text] to (..)
test:
assume (("asdf" capitalized) == "Asdf")
compile [capitalized %text, %text capitalized] to (..)
Lua value "((\(%text as lua expr)):gsub('%l', string.upper, 1))"
Lua value "(\(%text as lua expr)):gsub('%l', string.upper, 1)"
test:
assume (("asdf" uppercase) == "ASDF")
compile [uppercase %text, %text uppercase] to (..)
Lua value "((\(%text as lua expr)):gsub('%l', string.upper))"
Lua value "(\(%text as lua expr)):upper()"
test:
assume (("asdf" with "X" instead of "s") == "aXdf") or barf ".."