Bug 1689990 - Part 5: Remove InlineScriptTree::outermostCaller(). r=jandem

Another unused method.

Differential Revision: https://phabricator.services.mozilla.com/D103641
This commit is contained in:
André Bargull 2021-02-05 16:11:16 +00:00
Родитель a2798e1021
Коммит 13b243b753
1 изменённых файлов: 0 добавлений и 6 удалений

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

@ -57,12 +57,6 @@ class InlineScriptTree {
bool isOutermostCaller() const { return caller_ == nullptr; }
bool hasCaller() const { return caller_ != nullptr; }
InlineScriptTree* outermostCaller() {
if (isOutermostCaller()) {
return this;
}
return caller_->outermostCaller();
}
jsbytecode* callerPc() const { return callerPc_; }