From d8dfede4dc16846dd15ceeafa79a51c446d7f84e Mon Sep 17 00:00:00 2001 From: mitchell Date: Sun, 29 Mar 2020 20:12:40 -0400 Subject: lexlua: Fixed incorrect grammar building for lexers that embed themselves. When there is no initial '*_whitespace' style, child lexers should prefer their parent's grammar rather than their own. --- test/test_lexlua.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/test_lexlua.lua') diff --git a/test/test_lexlua.lua b/test/test_lexlua.lua index c692e0fb1..276f8273c 100644 --- a/test/test_lexlua.lua +++ b/test/test_lexlua.lua @@ -931,6 +931,8 @@ function test_php() } local initial_style = php._TOKENSTYLES['html_whitespace'] assert_lex(php, code, tokens, initial_style) + initial_style = php._TOKENSTYLES['default'] -- also test non-ws init style + assert_lex(php, code, tokens, initial_style) -- Starting in PHP. code = [[echo "hi";]] initial_style = php._TOKENSTYLES['php_whitespace'] -- cgit v1.2.3