Index: src/isolate.h |
diff --git a/src/isolate.h b/src/isolate.h |
index 63bc50f90a05ece8e2439c0d40bf8027f7959b91..fc36de3aa53b0a64f3d1cf51d8636ce14704eacc 100644 |
--- a/src/isolate.h |
+++ b/src/isolate.h |
@@ -419,6 +419,8 @@ typedef List<HeapObject*> DebugObjectCache; |
V(bool, is_profiling, false) \ |
/* true if a trace is being formatted through Error.prepareStackTrace. */ \ |
V(bool, formatting_stack_trace, false) \ |
+ /* Perform side effect checks on function call and API callbacks. */ \ |
+ V(bool, needs_side_effect_check, false) \ |
ISOLATE_INIT_SIMULATOR_LIST(V) |
#define THREAD_LOCAL_TOP_ACCESSOR(type, name) \ |