'continue' is not a keyword in any release of standard Lua that I am aware of, and is valid for use as an identifier name
e.g. running
lua5.4
Lua 5.4.4 Copyright (C) 1994-2022 Lua.org, PUC-Rio
> continue = "hello world"
> continue
hello world
>
parsing this file using py-lua-parser produces this error because it has 'continue' as a loop-control keyword instead
line 1:9 mismatched input '=' expecting <EOF>