Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index ebd126659ba8fd44354a79620a18550abc168049..f4112d7e96142e39fea58a62bd56fce79c34f6cf 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -558,8 +558,7 @@ static Handle<SharedFunctionInfo> MakeFunctionInfo(CompilationInfo* info) { |
#ifdef ENABLE_DEBUGGER_SUPPORT |
if (info->is_eval()) { |
- Script::CompilationType compilation_type = Script::COMPILATION_TYPE_EVAL; |
- script->set_compilation_type(Smi::FromInt(compilation_type)); |
+ script->set_compilation_type(Script::COMPILATION_TYPE_EVAL); |
// For eval scripts add information on the function from which eval was |
// called. |
if (info->is_eval()) { |
@@ -650,8 +649,7 @@ static Handle<SharedFunctionInfo> MakeFunctionInfo(CompilationInfo* info) { |
// the instances of the function. |
SetExpectedNofPropertiesFromEstimate(result, lit->expected_property_count()); |
- script->set_compilation_state( |
- Smi::FromInt(Script::COMPILATION_STATE_COMPILED)); |
+ script->set_compilation_state(Script::COMPILATION_STATE_COMPILED); |
#ifdef ENABLE_DEBUGGER_SUPPORT |
// Notify debugger |