Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Unified Diff: src/ast/scopes.h

Issue 2270743003: Get rid of PropagateScopeInfo, update asm_function in set_asm_module instead. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/ast/scopes.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast/scopes.h
diff --git a/src/ast/scopes.h b/src/ast/scopes.h
index 619c5ec48985174cf72009f80310cc757d74e30d..f93c6fa1929a84c386caf09d5b8fc59863c2faf0 100644
--- a/src/ast/scopes.h
+++ b/src/ast/scopes.h
@@ -531,9 +531,6 @@ class Scope: public ZoneObject {
ParseInfo* info = nullptr,
VariableProxy* stack = nullptr);
- // Scope analysis.
- void PropagateScopeInfo();
-
// Predicates.
bool MustAllocate(Variable* var);
bool MustAllocateInContext(Variable* var);
@@ -624,7 +621,7 @@ class DeclarationScope : public Scope {
}
bool asm_module() const { return asm_module_; }
- void set_asm_module() { asm_module_ = true; }
+ void set_asm_module();
bool asm_function() const { return asm_function_; }
void set_asm_function() { asm_module_ = true; }
« no previous file with comments | « no previous file | src/ast/scopes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698