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

Unified Diff: src/compiler.cc

Issue 2398023002: [wasm] asm.js - Parse and convert asm.js to wasm a function at a time. (Closed)
Patch Set: Created 4 years, 2 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
Index: src/compiler.cc
diff --git a/src/compiler.cc b/src/compiler.cc
index ec402fa82209339f2bddfcee9066b7e17ef90763..26e69dbf83ff350c441da6c2b44193c3a9f08866 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -1180,6 +1180,11 @@ bool Compiler::ParseAndAnalyze(ParseInfo* info) {
return true;
}
+Handle<SharedFunctionInfo> Compiler::NewSharedFunctionInfoFromLiteral(
+ Isolate* isolate, FunctionLiteral* literal, Handle<Script> script) {
+ return NewSharedFunctionInfoForLiteral(isolate, literal, script);
+}
+
bool Compiler::Compile(Handle<JSFunction> function, ClearExceptionFlag flag) {
if (function->is_compiled()) return true;
Isolate* isolate = function->GetIsolate();
« src/asmjs/asm-wasm-builder.cc ('K') | « src/compiler.h ('k') | src/parsing/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698