File tree Expand file tree Collapse file tree 3 files changed +33
-43
lines changed
features/org.eclipse.dltk.javascript-feature
org.eclipse.dltk.javascript.debug.ui
org.eclipse.dltk.javascript.jsjdtdebugger/src/org/eclipse/dltk/javascript/jsjdtdebugger Expand file tree Collapse file tree 3 files changed +33
-43
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
-->
17
17
<feature
18
- id =" org.eclipse.dltk.javascript"
18
+ id =" org.eclipse.dltk.javascript.servoy "
19
19
label =" %featureName"
20
20
version =" 4.0.0.qualifier"
21
21
provider-name =" %providerName"
@@ -37,8 +37,14 @@ http://www.eclipse.org/legal/epl-v10.html
37
37
%license
38
38
</license >
39
39
40
+ <url >
41
+ <update label =" Servoy Update Site" url =" http://www.servoy.com/developer/5xx_updates" />
42
+ <discovery label =" Servoy Update Site" url =" http://www.servoy.com/developer/5xx_updates" />
43
+ </url >
44
+
40
45
<requires >
41
- <import feature =" org.eclipse.dltk.core" version =" 4.0.0" match =" compatible" />
46
+ <import feature =" org.eclipse.dltk.core.servoy" version =" 4.0.0" match =" compatible" />
47
+ <import feature =" org.eclipse.jdt" version =" 3.5.0.v20090527-2000-7r88FEeFJePyvYeA33DjZ_c1" match =" greaterOrEqual" />
42
48
</requires >
43
49
44
50
<plugin
@@ -62,34 +68,13 @@ http://www.eclipse.org/legal/epl-v10.html
62
68
version =" 0.0.0"
63
69
unpack =" false" />
64
70
65
- <plugin
66
- id =" org.eclipse.dltk.javascript.jdt.integration"
67
- download-size =" 0"
68
- install-size =" 0"
69
- version =" 0.0.0"
70
- unpack =" false" />
71
-
72
71
<plugin
73
72
id =" org.eclipse.dltk.javascript.launching"
74
73
download-size =" 0"
75
74
install-size =" 0"
76
75
version =" 0.0.0"
77
76
unpack =" false" />
78
77
79
- <plugin
80
- id =" org.eclipse.dltk.javascript.rhino"
81
- download-size =" 0"
82
- install-size =" 0"
83
- version =" 0.0.0"
84
- unpack =" false" />
85
-
86
- <plugin
87
- id =" org.eclipse.dltk.javascript.rhino.dbgp"
88
- download-size =" 0"
89
- install-size =" 0"
90
- version =" 0.0.0"
91
- unpack =" false" />
92
-
93
78
<plugin
94
79
id =" org.eclipse.dltk.javascript.ui"
95
80
download-size =" 0"
@@ -125,4 +110,10 @@ http://www.eclipse.org/legal/epl-v10.html
125
110
version =" 0.0.0"
126
111
unpack =" false" />
127
112
113
+ <plugin
114
+ id =" org.antlr.runtime"
115
+ download-size =" 0"
116
+ install-size =" 0"
117
+ version =" 0.0.0"
118
+ unpack =" false" />
128
119
</feature >
Original file line number Diff line number Diff line change 27
27
28
28
<extension point =" org.eclipse.dltk.ui.editorTextHovers" >
29
29
<hover
30
- label =" %javascriptVariabl1eHoverLabel"
31
- description =" %javaVariableHoverDescription"
32
- nature =" org.eclipse.dltk.javascript.core.nature"
33
- class =" org.eclipse.dltk.javascript.internal.debug.ui.JavaScriptDebugHover"
34
- id =" org.eclipse.dltk.javascript.internal.debug.ui.JavaScriptDebugHover" >
30
+ activate =" true"
31
+ class =" org.eclipse.dltk.javascript.internal.debug.ui.JavaScriptDebugHover"
32
+ description =" %javaVariableHoverDescription"
33
+ id =" org.eclipse.dltk.javascript.internal.debug.ui.JavaScriptDebugHover"
34
+ label =" %javascriptVariabl1eHoverLabel"
35
+ nature =" org.eclipse.dltk.javascript.core.nature" >
35
36
</hover >
36
37
</extension >
37
38
230
231
<instanceof
231
232
value =" org.eclipse.dltk.debug.ui.ScriptDebugConsole" >
232
233
</instanceof >
233
- <test
234
- property =" org.eclipse.debug.ui.processTypeTest"
235
- value =" javascriptInterpreter" />
236
234
</enablement >
237
235
</consolePatternMatchListener >
238
236
</extension >
Original file line number Diff line number Diff line change @@ -65,18 +65,19 @@ private void resetSuspendProperties(Preferences prefs) {
65
65
// These preferences should be remembered but whatever i try its
66
66
// impossible (ToggleStates, AbstractHandlerWithState, Action that is
67
67
// pulldown)
68
- prefs
69
- .setValue (
70
- IJavaScriptAndJdtDebuggerPreferenceConstants .PREF_BREAK_ON_METHOD_ENTRY ,
71
- false );
72
- prefs
73
- .setValue (
74
- IJavaScriptAndJdtDebuggerPreferenceConstants .PREF_BREAK_ON_METHOD_EXIT ,
75
- false );
76
- prefs
77
- .setValue (
78
- IJavaScriptAndJdtDebuggerPreferenceConstants .PREF_BREAK_ON_EXCEPTION ,
79
- false );
68
+ // Only a Toolbar button seems to work..
69
+ // prefs
70
+ // .setValue(
71
+ // IJavaScriptAndJdtDebuggerPreferenceConstants.PREF_BREAK_ON_METHOD_ENTRY,
72
+ // false);
73
+ // prefs
74
+ // .setValue(
75
+ // IJavaScriptAndJdtDebuggerPreferenceConstants.PREF_BREAK_ON_METHOD_EXIT,
76
+ // false);
77
+ // prefs
78
+ // .setValue(
79
+ // IJavaScriptAndJdtDebuggerPreferenceConstants.PREF_BREAK_ON_EXCEPTION,
80
+ // false);
80
81
}
81
82
82
83
/*
You can’t perform that action at this time.
0 commit comments