diff --git a/platform/script-debugger/backend/src/org/jetbrains/debugger/values/ValueType.java b/platform/script-debugger/backend/src/org/jetbrains/debugger/values/ValueType.java index 96b9333cd5b0..c8664b6ee1d4 100644 --- a/platform/script-debugger/backend/src/org/jetbrains/debugger/values/ValueType.java +++ b/platform/script-debugger/backend/src/org/jetbrains/debugger/values/ValueType.java @@ -1,7 +1,7 @@ package org.jetbrains.debugger.values; /** - * Don't forget to update NashornDebuggerSupport.ValueType respectively also + * Don't forget to update NashornDebuggerSupport.ValueType and debuggerSupport.js respectively also */ public enum ValueType { OBJECT, @@ -11,8 +11,6 @@ public enum ValueType { BOOLEAN, ARRAY, - REGEXP, - DATE, NODE, /** @@ -31,6 +29,6 @@ public enum ValueType { * not a {@link ObjectValue} */ public boolean isObjectType() { - return this == OBJECT || this == ARRAY || this == FUNCTION || this == REGEXP || this == DATE || this == NODE; + return this == OBJECT || this == ARRAY || this == FUNCTION || this == NODE; } } \ No newline at end of file diff --git a/platform/script-debugger/protocol/protocol-model-generator/protocol-model-generator.iml b/platform/script-debugger/protocol/protocol-model-generator/protocol-model-generator.iml index 97e37aaa834f..f8843ee65867 100644 --- a/platform/script-debugger/protocol/protocol-model-generator/protocol-model-generator.iml +++ b/platform/script-debugger/protocol/protocol-model-generator/protocol-model-generator.iml @@ -6,7 +6,7 @@ - +