Bug 1551916 - Remove |TokenStreamAnyChars::undoInternalUpdateLineInfoForEOL| as unused. r=arai

Differential Revision: https://phabricator.services.mozilla.com/D31300

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jeff Walden 2019-05-17 03:20:58 +00:00
Родитель ce94f581e0
Коммит 39cf0106b2
2 изменённых файлов: 0 добавлений и 10 удалений

Просмотреть файл

@ -639,14 +639,6 @@ TokenStreamAnyChars::internalUpdateLineInfoForEOL(uint32_t lineStartOffset) {
return srcCoords.add(lineno, linebase);
}
void TokenStreamAnyChars::undoInternalUpdateLineInfoForEOL() {
MOZ_ASSERT(prevLinebase !=
size_t(-1)); // we should never get more than one EOL
linebase = prevLinebase;
prevLinebase = size_t(-1);
lineno--;
}
#ifdef DEBUG
template <>

Просмотреть файл

@ -636,8 +636,6 @@ class TokenStreamAnyChars : public TokenStreamShared {
MOZ_MUST_USE MOZ_ALWAYS_INLINE bool internalUpdateLineInfoForEOL(
uint32_t lineStartOffset);
void undoInternalUpdateLineInfoForEOL();
public:
const Token& nextToken() const {
MOZ_ASSERT(hasLookahead());