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

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: revised Created 4 years, 1 month 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 57a010c3162076cd4183959d47d0a13c596281eb..8d3ce654a05373a0419a6c03c2036a424b3679ad 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -1048,6 +1048,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();

Powered by Google App Engine
This is Rietveld 408576698