Chromium Code Reviews

Unified Diff: src/ast/scopes.cc

Issue 2400613003: PreParsing inner functions: Fix declaration-only variables, part 2. (Closed)
Patch Set: rebased Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | src/parsing/parser.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast/scopes.cc
diff --git a/src/ast/scopes.cc b/src/ast/scopes.cc
index 22402b9c692d35000fd667c1f3d347c560b3d94a..5ed0e5f3dd372a956ceb7ec5fb61d82914122564 100644
--- a/src/ast/scopes.cc
+++ b/src/ast/scopes.cc
@@ -998,7 +998,7 @@ bool Scope::RemoveUnresolved(VariableProxy* var) {
}
bool Scope::RemoveUnresolved(const AstRawString* name) {
- if (unresolved_->raw_name() == name) {
+ if (unresolved_ != nullptr && unresolved_->raw_name() == name) {
VariableProxy* removed = unresolved_;
unresolved_ = unresolved_->next_unresolved();
removed->set_next_unresolved(nullptr);
@@ -1007,7 +1007,7 @@ bool Scope::RemoveUnresolved(const AstRawString* name) {
VariableProxy* current = unresolved_;
while (current != nullptr) {
VariableProxy* next = current->next_unresolved();
- if (next->raw_name() == name) {
+ if (next != nullptr && next->raw_name() == name) {
adamk 2016/10/07 18:35:55 Why was this null check (and the one above) not ne
marja 2016/10/07 19:00:27 - This function is only used by the PreParser - Pr
current->set_next_unresolved(next->next_unresolved());
next->set_next_unresolved(nullptr);
return true;
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | src/parsing/parser.cc » ('J')

Powered by Google App Engine