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