File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 17
17
amends "../basePklProject.pkl"
18
18
19
19
package {
20
- version = "1.0.0 "
20
+ version = "1.0.1 "
21
21
}
Original file line number Diff line number Diff line change 18
18
module pkl.lua.lua
19
19
20
20
import "pkl:reflect"
21
+ import "lua.pkl"
21
22
22
23
local const pathSpecRegex : Regex = let (prop = #"(?:[^\[\]^*.]+)"# ) Regex(#"""
23
24
(?x)
@@ -63,7 +64,7 @@ local const splatKey: Key = new Key { key = "*" }
63
64
typealias LuaKeyword = "and" | "break" | "do" | "else" | "elseif" | "end" | "false" | "for" | "function" | "goto" | "if" | "in" | "local" | "nil" | "not" | "or" | "repeat" | "return" | "then" | "true" | "until" | "while"
64
65
65
66
/// A string that is a valid Lua identifier.
66
- typealias LuaIdentifier = String(matches(Regex("[a-zA-Z_][a-zA-Z0-9_]*") ) && ! (this is LuaKeyword))
67
+ typealias LuaIdentifier = String(matches(Regex("[a-zA-Z_][a-zA-Z0-9_]*") ) && ! (this is lua. LuaKeyword))
67
68
68
69
/// Directs [Renderer] to output additional text [before] and/or [after] rendering a [value].
69
70
class LuaRenderDirective {
You can’t perform that action at this time.
0 commit comments