summaryrefslogtreecommitdiff
path: root/src/node_config.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_config.cc')
-rw-r--r--src/node_config.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/node_config.cc b/src/node_config.cc
index 65ad48f349..56672308d1 100644
--- a/src/node_config.cc
+++ b/src/node_config.cc
@@ -57,18 +57,18 @@ static void Initialize(Local<Object> target,
READONLY_TRUE_PROPERTY(target, "hasTracing");
#endif
-#if HAVE_INSPECTOR
- READONLY_TRUE_PROPERTY(target, "hasInspector");
-#else
- READONLY_FALSE_PROPERTY(target, "hasInspector");
-#endif
-
#if !defined(NODE_WITHOUT_NODE_OPTIONS)
READONLY_TRUE_PROPERTY(target, "hasNodeOptions");
#endif
#endif // NODE_HAVE_I18N_SUPPORT
+#if HAVE_INSPECTOR
+ READONLY_TRUE_PROPERTY(target, "hasInspector");
+#else
+ READONLY_FALSE_PROPERTY(target, "hasInspector");
+#endif
+
if (env->abort_on_uncaught_exception())
READONLY_TRUE_PROPERTY(target, "shouldAbortOnUncaughtException");