Make moreTokens public
This commit is contained in:
parent
54118e905f
commit
0afeca5f9f
|
@ -6035,6 +6035,15 @@ q{doStuff(5)}c;
|
|||
this.tokens = tokens;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns: true if there are more tokens
|
||||
*/
|
||||
bool moreTokens() const nothrow pure @safe
|
||||
{
|
||||
return index < tokens.length;
|
||||
}
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
bool isCastQualifier() const
|
||||
|
@ -6519,14 +6528,6 @@ protected:
|
|||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns: true if there are more tokens
|
||||
*/
|
||||
bool moreTokens() const nothrow
|
||||
{
|
||||
return index < tokens.length;
|
||||
}
|
||||
|
||||
size_t setBookmark()
|
||||
{
|
||||
mixin(traceEnterAndExit!(__FUNCTION__));
|
||||
|
|
Loading…
Reference in New Issue