fix section header being included in some traits

This commit is contained in:
WebFreak001 2023-04-27 03:00:57 +02:00 committed by Jan Jurzitza
parent 64e318e707
commit 0e85f165a9
2 changed files with 8 additions and 12 deletions

View File

@ -329,10 +329,7 @@ $(CONSOLE
tuple("pure", "nothrow", "@nogc", "@trusted")
)
)
)
$(H2 $(LNAME2 function-parameters, Function Parameter Traits))`),
)`),
ConstantCompletion("getFunctionVariadicStyle", `$(P
Takes one argument which must either be a function symbol, or a type
that is a function, delegate or a function pointer.
@ -891,10 +888,7 @@ void main()
C c = cast(C) ptr;
assert(c.i == 4);
}
---
$(H2 $(LNAME2 functions, Function Traits))`),
---`),
ConstantCompletion("isAbstractClass", `$(P If the arguments are all either types that are abstract classes,
or expressions that are typed as abstract classes, then $(D true)
is returned.
@ -1670,10 +1664,7 @@ void foreachExample(C c, int x)
static assert(is(typeof(__traits(parameters)) == AliasSeq!(C, int)));
}
}
---
$(H2 $(LNAME2 symbols, Symbol Traits))`),
---`),
ConstantCompletion("parent", `$(P Takes a single argument which must evaluate to a symbol.
The result is the symbol that is the parent of it.
)`),

View File

@ -135,6 +135,11 @@ ConstantCompletion[] parseTraits(string ddoc)
foundTerminator = true;
break;
}
else if (line.startsWith("$(H2 $(LNAME2"))
{
addCurrent();
seekingToFirst = true;
}
else if (line.canFind("$(GNAME "))
{
addCurrent();