Index: src/compiler.h |
diff --git a/src/compiler.h b/src/compiler.h |
index ca64e40387232cd1724e6fe40ae04e1670e4ea10..d101dda046c401dfa8b67a1586cb9779ce0eb424 100644 |
--- a/src/compiler.h |
+++ b/src/compiler.h |
@@ -661,11 +661,14 @@ class Compiler : public AllStatic { |
Handle<JSFunction> function); |
MUST_USE_RESULT static MaybeHandle<Code> GetUnoptimizedCode( |
Handle<SharedFunctionInfo> shared); |
- static bool EnsureCompiled(Handle<JSFunction> function, |
- ClearExceptionFlag flag); |
MUST_USE_RESULT static MaybeHandle<Code> GetCodeForDebugging( |
Handle<JSFunction> function); |
+ static bool EnsureCompiled(Handle<JSFunction> function, |
+ ClearExceptionFlag flag); |
+ |
+ static bool EnsureDeoptimizationSupport(CompilationInfo* info); |
+ |
static void CompileForLiveEdit(Handle<Script> script); |
// Compile a String source within a context for eval. |