* add WebAssembly lexer * avoid test failure by using the default function instead of an empty regex * address small issues * fix WebAssembly string escapes * change WebAssembly multiline comment parsing * update copyright year * set versionadded to 2.9 * change WebAssembly tests to use the new test system * change WebAssembly unit test to use snippets
10 lines
241 B
Text
10 lines
241 B
Text
---input---
|
|
(; comment with ( open paren ;)
|
|
|
|
---tokens---
|
|
'(;' Comment.Multiline
|
|
' comment with ' Comment.Multiline
|
|
'(' Comment.Multiline
|
|
' open paren ' Comment.Multiline
|
|
';)' Comment.Multiline
|
|
'\n' Text
|