mirror of https://gitlab.com/basile.b/dexed.git
added version to test cetodo.d as a runnable module
This commit is contained in:
parent
2c2fd1347c
commit
a9b6cb65e2
|
|
@ -124,6 +124,13 @@ void main(string[] args)
|
||||||
string[] files = args[1..$];
|
string[] files = args[1..$];
|
||||||
Appender!string lfmApp;
|
Appender!string lfmApp;
|
||||||
TodoItems todoItems;
|
TodoItems todoItems;
|
||||||
|
|
||||||
|
// helper to test in Coedit with Compile file & run.
|
||||||
|
version(runnable_module)
|
||||||
|
{
|
||||||
|
if (!files.length)
|
||||||
|
files ~= __FILE__;
|
||||||
|
}
|
||||||
|
|
||||||
foreach(f; files)
|
foreach(f; files)
|
||||||
{
|
{
|
||||||
|
|
@ -200,7 +207,7 @@ void main(string[] args)
|
||||||
string comment, fields;
|
string comment, fields;
|
||||||
while (!text.empty)
|
while (!text.empty)
|
||||||
{
|
{
|
||||||
auto front = text.front;
|
auto front = text.front;
|
||||||
identifier ~= front;
|
identifier ~= front;
|
||||||
text.popFront;
|
text.popFront;
|
||||||
if (front == ':')
|
if (front == ':')
|
||||||
|
|
@ -242,7 +249,7 @@ void main(string[] args)
|
||||||
|
|
||||||
// samples for testing the program as a runnable ('Compile and run file ...') with '<CFF>'
|
// samples for testing the program as a runnable ('Compile and run file ...') with '<CFF>'
|
||||||
|
|
||||||
// fixme-p8: èuèuuè``u`èuùè
|
// fixme-p8: èuèuuè``u`èuùè é ^ç
|
||||||
// fixme-p8: fixme also handled
|
// fixme-p8: fixme also handled
|
||||||
// TODO-cINVALID_because_no_content:
|
// TODO-cINVALID_because_no_content:
|
||||||
////TODO:set this property as const() to set it read only.
|
////TODO:set this property as const() to set it read only.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue