From 884368593d6b05546ea0f595ac53a954999b95b4 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 18 Sep 2018 17:40:32 -0700 Subject: Added code for handling lua keywords in as_lua_id(). --- string2.moon | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'string2.moon') diff --git a/string2.moon b/string2.moon index 426504c..27e7122 100644 --- a/string2.moon +++ b/string2.moon @@ -64,7 +64,8 @@ string2 = { else format("x%02X", byte(c)) -- Lua IDs can't start with numbers, so map "1" -> "_1", "_1" -> "__1", etc. str = gsub str, "^_*%d", "_%1" - if match str, "^_*[a-z]*$" + -- This pattern is guaranteed to match all keywords, but also matches some other stuff. + if match str, "^_*[abdefgilnortuw][aefhilnoru][acdefiklnoprstu]*$" for kw in *lua_keywords if match str, ("^_*"..kw) str = "_"..str @@ -73,7 +74,8 @@ string2 = { -- from_lua_id(as_lua_id(str)) == str, but behavior is unspecified for inputs that -- did not come from as_lua_id() from_lua_id: (str)-> - if match str, "^_+[a-z]*$" + -- This pattern is guaranteed to match all keywords, but also matches some other stuff. + if match str, "^_+[abdefgilnortuw][aefhilnoru][acdefiklnoprstu]*$" for kw in *lua_keywords if match str, ("^_+"..kw) str = str\sub(2,-1) -- cgit v1.2.3