Bug 1371298 - stop ignoring prefs after #endif in webpack/addon devtools prefs loaders;r=tromey

MozReview-Commit-ID: CKlmL6S0dtX

--HG--
extra : rebase_source : 36635d9aa007031a3d23b30860836441f393656b
This commit is contained in:
Julian Descottes 2017-06-08 17:05:52 +02:00
Родитель 5675a9f551
Коммит 181fa0d8b7
2 изменённых файлов: 4 добавлений и 0 удалений

2
devtools/bootstrap.js поставляемый
Просмотреть файл

@ -73,6 +73,8 @@ function interpretPreprocessingInstructions(content) {
ignoring = !ifMap[line];
} else if (line.startsWith("#else")) {
ignoring = !ignoring;
} else if (line.startsWith("#endif")) {
ignoring = false;
}
let isPrefLine = /^ *pref\("([^"]+)"/.test(line);

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

@ -57,6 +57,8 @@ module.exports = function (content) {
ignoring = !ifMap[line];
} else if (line.startsWith("#else")) {
ignoring = !ignoring;
} else if (line.startsWith("#endif")) {
ignoring = false;
}
}