return null;
}
@Override
protected Image getVariableImage(IScriptVariable variable) {
IScriptVariable v = variable;
IScriptValue scriptValue;
try {
scriptValue = (IScriptValue) v.getValue();
} catch (DebugException e) {
return ScriptDebugImages.get(ScriptDebugImages.IMG_OBJS_LOCAL_VARIABLE);
}
String typeString = (scriptValue).getType().getName();
if (typeString.equals("function"))