Make moreTokens public

This commit is contained in:
Hackerpilot 2014-02-14 09:01:21 -08:00
parent 54118e905f
commit 0afeca5f9f
1 changed files with 9 additions and 8 deletions

View File

@ -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__));