mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-06-13 02:10:30 +02:00
Use User Defined Language to have function list on Unit-tests. It could reduce regression happening while the code of boost regex or the related code is changed. And also make build system be aware of unit-test result. Close #10108
23 lines
708 B
XML
23 lines
708 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!-- ==========================================================================\
|
|
|
|
|
| To learn how to make your own language parser, please check the following
|
|
| link:
|
|
| https://npp-user-manual.org/docs/function-list/
|
|
|
|
|
\=========================================================================== -->
|
|
<NotepadPlus>
|
|
<functionList>
|
|
<!-- =========================================== [ regexGlobalTest ] -->
|
|
<!-- Regular Expression Global Test -->
|
|
|
|
<parser
|
|
displayName="RegexGlobalTest"
|
|
id ="regexGlobalTest"
|
|
>
|
|
<function
|
|
mainExpr="\((?>[^()]|(?R))*\)"
|
|
/>
|
|
</parser>
|
|
</functionList>
|
|
</NotepadPlus> |