Index: src/accessors.cc |
diff --git a/src/accessors.cc b/src/accessors.cc |
index 766509e2a5a40831d30097fef01882d1bfb1e3c8..8cdbcc37f07e8642884c5c88a28296fb9762cfa3 100644 |
--- a/src/accessors.cc |
+++ b/src/accessors.cc |
@@ -817,7 +817,7 @@ void Accessors::FunctionLengthGetter( |
} else { |
// If the function isn't compiled yet, the length is not computed |
// correctly yet. Compile it now and return the right length. |
- if (Compiler::Compile(function, KEEP_EXCEPTION)) { |
+ if (Compiler::Compile(function, Compiler::KEEP_EXCEPTION)) { |
length = function->shared()->length(); |
} |
if (isolate->has_pending_exception()) { |