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

Unified Diff: src/asmjs/asm-wasm-builder.h

Issue 2552873003: [wasm][asm.js] Pass Script with Handle. (Closed)
Patch Set: re-enable tests Created 4 years 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/asmjs/asm-typer.cc ('k') | src/asmjs/asm-wasm-builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/asmjs/asm-wasm-builder.h
diff --git a/src/asmjs/asm-wasm-builder.h b/src/asmjs/asm-wasm-builder.h
index ce9bae178b6d2dc7b64bf66821cd1225863c2e13..0b480733b03b0005237ef8cb627804bf0d032309 100644
--- a/src/asmjs/asm-wasm-builder.h
+++ b/src/asmjs/asm-wasm-builder.h
@@ -28,8 +28,8 @@ class AsmWasmBuilder {
};
explicit AsmWasmBuilder(Isolate* isolate, Zone* zone,
- AstValueFactory* ast_value_factory, Script* script,
- FunctionLiteral* root);
+ AstValueFactory* ast_value_factory,
+ Handle<Script> script, FunctionLiteral* root);
Result Run(Handle<FixedArray>* foreign_args);
static const char* foreign_init_name;
@@ -41,7 +41,7 @@ class AsmWasmBuilder {
Isolate* isolate_;
Zone* zone_;
AstValueFactory* ast_value_factory_;
- Script* script_;
+ Handle<Script> script_;
FunctionLiteral* literal_;
AsmTyper typer_;
};
« no previous file with comments | « src/asmjs/asm-typer.cc ('k') | src/asmjs/asm-wasm-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698