From c1f4d3f68787fa2ae964c468d28a84df37319b28 Mon Sep 17 00:00:00 2001 From: orbitalquark <70453897+orbitalquark@users.noreply.github.com> Date: Wed, 18 Sep 2024 14:30:49 -0400 Subject: lexers: switch to tabs for indentation --- lua/lexers/antlr.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lua/lexers/antlr.lua') diff --git a/lua/lexers/antlr.lua b/lua/lexers/antlr.lua index ca63167..522985e 100644 --- a/lua/lexers/antlr.lua +++ b/lua/lexers/antlr.lua @@ -12,16 +12,16 @@ lex:add_rule('whitespace', token(lexer.WHITESPACE, lexer.space^1)) -- Keywords. lex:add_rule('keyword', token(lexer.KEYWORD, word_match{ - 'abstract', 'break', 'case', 'catch', 'continue', 'default', 'do', 'else', 'extends', 'final', - 'finally', 'for', 'if', 'implements', 'instanceof', 'native', 'new', 'private', 'protected', - 'public', 'return', 'static', 'switch', 'synchronized', 'throw', 'throws', 'transient', 'try', - 'volatile', 'while', 'package', 'import', 'header', 'options', 'tokens', 'strictfp', 'false', - 'null', 'super', 'this', 'true' + 'abstract', 'break', 'case', 'catch', 'continue', 'default', 'do', 'else', 'extends', 'final', + 'finally', 'for', 'if', 'implements', 'instanceof', 'native', 'new', 'private', 'protected', + 'public', 'return', 'static', 'switch', 'synchronized', 'throw', 'throws', 'transient', 'try', + 'volatile', 'while', 'package', 'import', 'header', 'options', 'tokens', 'strictfp', 'false', + 'null', 'super', 'this', 'true' })) -- Types. lex:add_rule('type', token(lexer.TYPE, word_match( - 'boolean byte char class double float int interface long short void'))) + 'boolean byte char class double float int interface long short void'))) -- Functions. lex:add_rule('func', token(lexer.FUNCTION, 'assert')) -- cgit v1.2.3