aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlua/litcoffee.lua
diff options
context:
space:
mode:
authormitchell <unknown>2020-04-25 16:26:31 -0400
committermitchell <unknown>2020-04-25 16:26:31 -0400
commitfad15f79b1230b3076be515d6894c8919562809b (patch)
tree72c848ef02c3331de5ca54eff7adaea3a9a6fb88 /lexlua/litcoffee.lua
parent1fd02a367dec125c0b49dd9246a0928433866b96 (diff)
downloadscintilla-mirror-fad15f79b1230b3076be515d6894c8919562809b.tar.gz
Reformatted Lua LPeg lexers and added new convenience functions and pattern.
`lexer.range()` replaces `lexer.delimited_range()` and `lexer.nested_pair()`. `lexer.to_eol()` replaces `patt * lexer.nonnewline^0` constructs. `lexer.number` replaces `lexer.float + lexer.integer`. Also added unit tests for lexer functions.
Diffstat (limited to 'lexlua/litcoffee.lua')
-rw-r--r--lexlua/litcoffee.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/litcoffee.lua b/lexlua/litcoffee.lua
index 916b4e78f..499a788c7 100644
--- a/lexlua/litcoffee.lua
+++ b/lexlua/litcoffee.lua
@@ -17,6 +17,6 @@ lex:embed(coffeescript, coffee_start_rule, coffee_end_rule)
-- Use 'markdown_whitespace' instead of lexer.WHITESPACE since the latter would
-- expand to 'litcoffee_whitespace'.
lex:modify_rule('whitespace', token('markdown_whitespace', S(' \t')^1 +
- S('\r\n')^1))
+ S('\r\n')^1))
return lex