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

Unified Diff: test/cctest/asmjs/test-asm-typer.cc

Issue 2324783002: Include only stuff you need, part 9: variables.h (Closed)
Patch Set: rebased Created 4 years, 3 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 | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/asmjs/test-asm-typer.cc
diff --git a/test/cctest/asmjs/test-asm-typer.cc b/test/cctest/asmjs/test-asm-typer.cc
index dcb778533dcf5767bb7e205420fd51fe3526c82b..84063a05d0e5abcf205f99b00ca795dcd311e50c 100644
--- a/test/cctest/asmjs/test-asm-typer.cc
+++ b/test/cctest/asmjs/test-asm-typer.cc
@@ -278,10 +278,10 @@ class AsmTyperHarnessBuilder {
auto* name_ast_string = ast_value_factory_.GetOneByteString(var_name.name_);
return var_name.mode_ == DYNAMIC_GLOBAL
? outer_scope_->DeclareDynamicGlobal(name_ast_string,
- Variable::NORMAL)
+ NORMAL_VARIABLE)
: module_->scope()->DeclareLocal(name_ast_string, VAR,
kCreatedInitialized,
- Variable::NORMAL);
+ NORMAL_VARIABLE);
}
bool ValidateAllStatements(FunctionDeclaration* fun_decl) {
« no previous file with comments | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698