Skip to content
Snippets Groups Projects
Commit 6b6b827d authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Added helper method QmlJSIndenter::tokenText().

parent a5df2e7b
No related branches found
No related tags found
No related merge requests found
......@@ -321,6 +321,11 @@ Token QmlJSIndenter::lastToken() const
return Token();
}
QStringRef QmlJSIndenter::tokenText(const Token &token) const
{
return yyLinizerState.line.midRef(token.offset, token.length);
}
/*
Saves and restores the state of the global linizer. This enables
backtracking.
......
......@@ -85,6 +85,7 @@ private:
int indentForStandaloneLine();
Token lastToken() const;
QStringRef tokenText(const Token &token) const;
private:
int ppHardwareTabSize;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment