for the parser

This commit is contained in:
Hackerpilot 2013-02-14 20:05:50 +00:00
parent 655087d65b
commit d756149b52
1 changed files with 9 additions and 0 deletions

View File

@ -317,6 +317,15 @@ TokenRange!(R) byToken(R)(R range, LexerConfig config) if (isForwardRange!(R))
*/
struct TokenRange(R) if (isForwardRange!(R))
{
/**
* Returns the file name of the config object.
*/
string fileName() const @property
{
return config.fileName;
}
/**
* Returns: true if the range is empty
*/