https://github.com/eclipse/eclipse.jdt.debug

sort by:
Revision Author Date Message Commit Date
b8828be Bug 534687 - do not try to create AST on null types Change-Id: I2ce6dc4aaa202ab20e5a8feea7ab83ab7732884e Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 20 May 2019, 07:40:17 UTC
4a46acd Bug 343023 - Clear the initial stack trace console message on the first edit The JavaStackTraceConsole shows a simple help message when opened for the first time. If this message is still shown if user types something for the first time the message is cleared. Change-Id: Ia298428293493b95a0e61833857b2662d6a9b338 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de> 17 May 2019, 07:21:14 UTC
3061c32 Bug 543604 - adjusted build.properties to bundle new test snippet This change adds the new Java 9 test resource to the built bundle, so that the new test snippet is available during platform integration builds. Change-Id: Ie570908e9b19c64547bc0d23237f6fc2cde03d93 Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com> 17 May 2019, 06:31:56 UTC
b318840 Bug 534687 - [1.8] Lambda variable names in variables view is shown as arg$1 etc Debugger shows captured lambda variable names as val$outerArg instead of arg$1 etc. Change-Id: I84b6e65b3db99fd7ed53ab2c82df437d4dc61391 Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 16 May 2019, 10:24:18 UTC
c2bd7c3 Bug 546900 - Fix IO handling in JavaStacktraceConsole If previous content of JavaStacktraceConsole could not loaded with a single invocation of read the resulting content was corrupted and if eof is reached before expected number of bytes are read it will block the UI-thread for a long time. Only on Windows: if console is empty on close stackTraceConsole.txt should be deleted but failed and leave an empty file. Change-Id: Id4007602d782fb7cbeaf486d8328149d09f5fd6f Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de> 16 May 2019, 09:30:33 UTC
458db4b Bug 546071 - Debug Shell: content assist hint (light bulb) missing Change-Id: I431420d5472f5c6da4eec02ed48bd80dd414f612 16 May 2019, 07:05:12 UTC
9102ba8 Bug 543604 - [9] Error when hovering a HashMap The bug was observed under the following conditions: 1. Debug a snippet with a map variable on Java 9 or above JRE. 2. Enable "Show Logical Structure" in the variables view. 3. Expand a local variable or a parameter of type java.util.Map or inheriting, either in the debug hover in the Java source editor or in the Variables view. 4. Observe an error text instead of content. The error is caused by JDT debug attempting to compile a snippet as follows: package java.util; abstract class Map___ implements java.util.Map { void ___run() throws Throwable { return entrySet().toArray(); } } This snippet is constructed in order to validate whether the expression "return entrySet().toArray();" compiles in the context of the current breakpoint. On Java 9 and above, this snippet is not legal. java.util is already contained in the JRE libraries; its not possible to define a package like this and compile it without extra compile arguments (in particular --patch-module). To fix this problem, we add a special compile mode to JDT core, used by JDT debug. When in this mode, the JDT compiler will ignore split package problems. The compiled expression "return entrySet().toArray();" is then used for evaluation against the underlying java.util.Map, which does work with JRE 9+. Change-Id: Iba27100ac83c1a4eba68c819399082dfc12b4981 Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com> Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 16 May 2019, 06:36:07 UTC
c79eda0 Bug 545775 - Dispose detail pane container composite Change-Id: I3573fa777ba84a9ebbc8131ff3cc264f205238e4 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de> 14 May 2019, 09:20:11 UTC
1bd63c5 Bug 547138 - Every project should set minor and major version options to 'Error' Change-Id: Ib699ab11fb92fbe635e881da114c2ae82c12fc5d 10 May 2019, 06:39:46 UTC
6c4e43a Bug 547037 - [launch][9] need to understand ADD_OPENS attribute Change-Id: I0c4684ce32a70b9aa2c003568bfe0dd7a8f7f127 08 May 2019, 05:31:17 UTC
1ad8d43 Bug 547037 - [launch][9] need to understand ADD_OPENS attribute Change-Id: I92312a00375baa3b52b95a38221754d490b6e2a4 07 May 2019, 10:26:46 UTC
1383301 Bug 545590 - [12] JRE Oracle Corporation/12 is not supported, advanced source lookup disabled Change-Id: I8ea31db0f996f73238f8416f680c0aa1a7c684a4 06 May 2019, 08:32:10 UTC
164bcdc Bug 545326 - [tests] ProcessTests.testAlreadyTerminatedProcess blocks on Windows with Java 11 The test failed on Windows with Java 11 does not write to stdout but to stderr and the read blocks endless. Change-Id: Ie72bc3b18b9d9ee04f22e7109d42e4561a7311f0 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de> 28 April 2019, 16:32:49 UTC
3796cf2 Bug 546723 - speed up resource lookup for workspace members Reordered source lookup strategies so that the fastest checks are tried first. Skip lookup of containers when searching for an archive. getResource() for a workspace member no longer has to search for linked resources in the whole workspace. Change-Id: I5424f3490844c6ee803ed39ae13b1b343694a885 Signed-off-by: Julian Honnen <julian.honnen@vector.com> 26 April 2019, 06:40:36 UTC
f8678d3 Bug 545775 - Horizontal layout broken on variables view Change-Id: Idc5474c3fda1ad3f48fd3f8c430b5ed595275c9e Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de> 18 April 2019, 17:38:48 UTC
a246e36 Bug 498428 - "Run to Line" on Ctrl+Alt+Click in annotation/line number rulers Change-Id: Ic544e3ee9d5ce9d287fadc2d7c671e4d3391fcfe 16 April 2019, 04:44:17 UTC
493e596 Bug 546216 - Eclipse does not recognize jre located along with eclipse executable Change-Id: I51c121c7b32042a1c6b7852c6d84a12f206c13ab 11 April 2019, 02:44:12 UTC
9d146af Bug 545775 - Horizontal layout broken on variables view Change-Id: I52148843c0f521c216cc59a2f5f96cbd9dfdded5 06 April 2019, 04:42:27 UTC
e8eee88 Bug 544497 - Variables and Breakpoints view: "Content Assist Available" hover is missing keybinding Change-Id: I073e469b410321923f49bd91c6eae56bb817312e 04 April 2019, 10:54:09 UTC
60a4c0c Bug 546076 - AIOOBE in EvaluationSourceGenerator.getCompleteSnippet Change-Id: I8ca724f33e335e033c18c16a4cfd64632dac72df 04 April 2019, 03:33:53 UTC
fefdf32 Bug 545327 - [tests] Fix launch configuration leak in performance tests Change-Id: Ibf942b60280969bab0e8d807ef83bfe0c9bf2981 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de> 03 April 2019, 12:32:07 UTC
f7d625c Bug 544497 - Variables and Breakpoints view: "Content Assist Available" hover is missing keybinding Change-Id: Iaa4d874ae7428476b53a22c01b0ea85971a9e9fb 03 April 2019, 09:45:55 UTC
63d0fa9 Bug 545327 - [tests] Fix breakpoints of broken performance tests Adjust wrong line breakpoint numbers after Bug 535802 changed license header length in test files. Change-Id: I7b05b88116386c7a5f31f7aba4b5e059d2f7595f Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de> 02 April 2019, 18:31:08 UTC
0544990 Bug 545654 - [12] JDT Debug tests DNF with GA Java 12 Change-Id: I20107f7843be2cb7ebbbc933e71a0189826c51ec 02 April 2019, 16:14:43 UTC
6c32c9f Bug 545519 - Javadoc errors in jdt debug Java doc bundles Change-Id: I1256cee01f4d9e33e7d27d4e9c211bd8156e5a7e 28 March 2019, 02:38:12 UTC
1cc4b3d Bug 545519 - Javadoc errors in jdt debug Java doc bundles Change-Id: I78ec2d6c9c4847a56f36133a59f983eb073836b5 27 March 2019, 05:02:19 UTC
c8271a0 Bug 545519 - Javadoc errors in jdt debug Java doc bundles 27 March 2019, 03:25:41 UTC
41461b9 Bug 545638 - IUs in current repo that increase versions but with qualifier only Change-Id: I919dd6f0a55a9d998fa93024201353889ed7832e 22 March 2019, 03:39:52 UTC
5b72e58 Bug 539132 - [12] Update bundle versions and dependency versions in jdt.debug Change-Id: Ic1a5d493115afbab79fb8a6d39a75443da1e7646 21 March 2019, 11:59:43 UTC
40b2acf Bug 545576 - [12] Push Java 12 work to master Change-Id: I9309f442fdda724aa31eae1b345209c2da66cdb5 20 March 2019, 11:07:37 UTC
b31b0af Fixing Since version Change-Id: Ib7bbb1f648d575d2fc00d1612b8fdca5e86c014b 20 March 2019, 04:37:37 UTC
3e9f1e5 Bug 539472 - [12] Java 12 API doc to be added for JRE library Change-Id: I4d6545404d6d1943c4f6c572a6d461eb5ac2c4ca 20 March 2019, 02:52:04 UTC
8c1e5a1 Bug 545519 - Javadoc errors in jdt debug Java doc bundles 19 March 2019, 08:29:40 UTC
35add75 Bug 545475 - [12] Remove JCP disclaimers from code, UI and marketplace Change-Id: Ia51855f1c73ef99979fbf12357ea739ee485529a 19 March 2019, 06:03:26 UTC
2fa06b0 Bug 545469 - [12] NPE in AbstractJavaLaunchConfigurationDelegate.supportsPreviewFeatures Change-Id: I9e53eef6b131e5b3ee025ea2a2e485ef6161c295 18 March 2019, 05:43:38 UTC
cb93357 Bug 539132 - [12] Update bundle versions and dependency versions in jdt.debug Change-Id: I977eb872a66e854e175f4f4473e8a7cacd8ac312 18 March 2019, 05:28:35 UTC
e58c9cd Bug 539416 - [12] Debugging with Switch Expressions Change-Id: I091e63cb8435203dc9b1872e16b5ec63cce2df3a 13 March 2019, 06:35:33 UTC
9f32477 Bug 545253 - Silence API error The error reported were: "The minor version should be the same for version 3.13.100, since no new APIs have been added since version 3.12.0" Change-Id: I4409b8429f608ce80137e0c78268fa45ab8d3bd8 Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 12 March 2019, 16:09:24 UTC
f6074d5 Bug 545151 - [12] DOM AST SwitchCase change for JDT Debug Change-Id: I8e76fdc13f861f990ae66580308f63d73ab819d0 12 March 2019, 08:08:36 UTC
00e6057 Bug 545253 - Moving baseline to 4.11 Change-Id: Ic5bde8f5b879d657599d633f5dca4add984dd38a 11 March 2019, 09:52:15 UTC
de0fdca Bug 545094 - POM and product version change for 4.12 release Change-Id: I382f84eb0e693f80e9160e8a6c2cb39159db7cd9 Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com> 08 March 2019, 09:10:55 UTC
f608028 Merge remote-tracking branch 'origin/master' into BETA_JAVA_12 Change-Id: Ibf50d6bdc251efb9404f80eabfb1bdac6a289452 26 February 2019, 20:05:55 UTC
87084f8 Bug 334991 - Variables view: Add history with recent expressions to the details pane Change-Id: I280e727f76803f8a186ea8eac49dfcf8122c566c Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 26 February 2019, 07:33:57 UTC
66d47ca Bug 544578 - No JRE sources found with Java 8 compliance Java 11 runtime The fix for bug 525840 introduces a regression for the case of debugging a Java project that has Java 8 on build path but runs with Java 11 as runtime: The JRE sources cannot be found when stepping through the code. This patch tries to find a source attachment for given runtime entry also for the "modular" JRE case if no direct match was found by inspecting all opened Java projects. Change-Id: I72a5aa79c1d5b287c0f6321b88008e382f28895e Signed-off-by: Andrey Loskutov <loskutov@gmx.de> Also-by: Simeon Andreev <simeon.danailov.andreev@gmail.com> 22 February 2019, 09:37:28 UTC
b377015 Bug 544469 - Search Installed JREs is listing too many JREs Change-Id: I46e87f6f2311399c4915cfa594e985af4225c0fa 21 February 2019, 10:52:16 UTC
e0d2c6b Bug 334991 - Variables view: Add history with recent expressions to the details pane Change-Id: I0edb8836d1156796369535c0689a4bdd7ea165de 20 February 2019, 14:39:28 UTC
dbec8b9 Bug 537699 - step-filter sourcelookup agent by default Change-Id: I10bc166cc7ee77bc1b47a3b2bb96027ceb0160f3 Signed-off-by: Igor Fedorenko <igor@ifedorenko.com> 19 February 2019, 05:05:57 UTC
53b61da Bug 543933 - Build javadocs with Java 11 Fix see tag in IJavaThread to not point to removed method in new Java versions. Change-Id: Id41aab20a13a376bb29a4b6588a6727dcbae74ac Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> 18 February 2019, 22:30:36 UTC
bac90ed Bug 529435 - [launch] Deprecation of of getClasspath and instead getClasspathAndModulepath to be used in LaunchDelegate Change-Id: I92a05708dc906af372cc5b2376fb5c13b7d5f73b 18 February 2019, 10:24:43 UTC
fd9f312 Bug 542704 - Breakpoint not enabled when adding from Stack Trace - in JavaExceptionHyperLink.linkActivated(), for an existing exception breakpoint, default enablement to true and save original enablement value to reset if user cancels property dialog - add new ATTR_ENABLED_SETTING_ON_CANCEL attribute to JavaBreakpointPage - in JavaBreakpointPage.performCancel() reset enabled setting back to original if ATTR_ENABLED_SETTING_ON_CANCEL is set - in JavaBreakpointPage.performOK(), reset ATTR_ENABLED_SETTING_ON_CANCEL attribute to null - add new test case to LineTrackerTests Change-Id: Iea8abc9279776bcefae83b7af6efc355016b91ec Signed-off-by: Jeff Johnston <jjohnstn@redhat.com> 18 February 2019, 10:05:47 UTC
287d208 Bug 529435 - [launch] Deprecation of of getClasspath and instead getClasspathAndModulepath to be used in LaunchDelegate Change-Id: Ie5d60b74843ce55e4ebb1321b69adfc3f8345ad7 18 February 2019, 05:19:44 UTC
2f5cc91 Bug 544228 - Variables view: content assist hint (light bulb) missing Change-Id: I3545eace3a128697ab972476c314ae2d8be21300 15 February 2019, 09:45:28 UTC
25e3219 Bug 530296 - [9] Detail formatter broken for arrays Change-Id: If9cc5fd5803574eb127665c3dbb15babe75af415 14 February 2019, 15:40:05 UTC
e65de86 Bug 334991 - Variables view: Add history with recent expressions to the details pane Change-Id: I416887ef8a614e9013d6479e83809f17300dba14 14 February 2019, 06:38:17 UTC
c408eff Bug 543078 - Java 9+ causes an error when bundled in Eclipse product using jre convention Change-Id: Iaef07521d610f973f03c8a91a044710886766c8b 13 February 2019, 06:15:42 UTC
da798f4 Bug 544027 - Cannot launch non-modular project if JRE_Container has a "limit-modules" attribute Change-Id: I67713f4bb28741c7e5509cc6b12e98b1c847655a 12 February 2019, 20:13:30 UTC
0072e82 Bug 334991 - Variables view: Add history with recent expressions to the details pane Change-Id: I3964343e9c95036af6fde4920686e30765fab27f 12 February 2019, 08:31:48 UTC
6c9a3ae Bug 543078 - Java 9+ causes an error when bundled in Eclipse product using jre convention Change-Id: Ifcfc0ff68c543def7a3816c2cdfed6ac179a099e 11 February 2019, 09:36:43 UTC
fe21f0d Bug 544266 - [12] JDT Debug test cases failure in Y-Build: Y20190206-2200 Change-Id: Ifa3d0dbe33b4d682976dc1ac2ba9c277242dc677 08 February 2019, 10:08:39 UTC
551810d Bug 544133 - Debug Test Suite is unstoppable Signal end of test runner thread in any case. Also removed duplicated implementation in ManualSuite. Change-Id: If5c800895537ec70328ffe546dae0d1069cc95da Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de> 06 February 2019, 03:51:38 UTC
b5e59df Bug 532557 - BadLocationException below ConsoleDocument.getLineOfOffset Small workaround to avoid setting console text at same time console is shown. Change-Id: Icf1215219cf713112ffd94192456b2b978a85817 Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 05 February 2019, 20:21:21 UTC
652cb26 Merge remote-tracking branch 'origin/master' into BETA_JAVA_12 05 February 2019, 12:00:41 UTC
f17dee8 Bug 543851 - white space inside the workspace path breaks run configuration's command line Change-Id: If3cab6fb101dfff1c4e903db468e9a1eb5c8c765 04 February 2019, 18:47:37 UTC
eba1bf7 Bug 334991 - Variables view: Add history with recent expressions to the details pane Change-Id: I9f7dc364305579b60a0f19be1322a24a35be77a8 30 January 2019, 15:54:50 UTC
0e3a75b Bug 529435 - [launch] Deprecation of of getClasspath and instead getClasspathAndModulepath to be used in LaunchDelegate (edit) Change-Id: I16490e5939c58e43a84e32a116ab24f16c112990 30 January 2019, 15:44:31 UTC
d554f61 Report all API Tools version problems as 'Error' 29 January 2019, 16:16:24 UTC
960e486 Bug 543863 - Bogus question "Save changes in 'Variables'?" Change-Id: I412f340bd670e67045f1cfa6155042bcede8031b 28 January 2019, 11:53:33 UTC
ff4e9cd Bug 334991 - Variables view: Add history with recent expressions to the details pane Change-Id: I7105b8125a10f0ccdfc39c3ba43961874369b797 24 January 2019, 03:45:50 UTC
82b2537 Bug 404097 - New tests check for error markers only on their project This change ensures the tests added for bug 404097 check for error markers only on their respective project. This ensures the tests don't fail if previous tests decide to leave projects with error markers in the workspace. Change-Id: I9f729102329da51ae9139f239548c8c1571f504c Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com> 23 January 2019, 07:55:59 UTC
89530b2 Bug 529435 - [launch] Deprecation of of getClasspath and instead getClasspathAndModulepath to be used in LaunchDelegate Change-Id: I5bf612502849a3e5d09922c408757f856cf365d6 17 January 2019, 08:37:21 UTC
3593036 Bug 543385 - [lambda] no breakpoint hits for single line lambda calls In case we have no condition, we can allow to stop at every location. Change-Id: I7ac1f6629109dcea5a7eff20247a11bfd501a5f7 Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 14 January 2019, 10:36:17 UTC
d232be2 Bug 542580 - [11] support --enable-preview in Launching Change-Id: Ia210b906527e189a6e00b236bd9c823dbf03edd1 11 January 2019, 06:29:34 UTC
108b0bc Merge remote-tracking branch 'origin/master' into BETA_JAVA_12 11 January 2019, 04:45:27 UTC
4721c59 Bug 542579: [12] support --enable-preview in UI Change-Id: Icc212a59684db3232615cf1ebc2645693717b686 09 January 2019, 12:25:35 UTC
fddab14 Removed trailing whitespace 09 January 2019, 08:56:26 UTC
b4af0ff Bug 404097 - Fixed some cases of breakpoint condition in lambda This change fixes some cases of referring to an outer-scope variable in a breakpoint condition within a lambda. Currently this leads to an error dialog, indicating that the outer-scope varaible cannot be resolved. With the fix, ASTEvaluationEngine will check whether the current frame is a lambda frame. If so, it will also consider variables from two frames above the current stack frame. This fixes the standard use case of defining a lambda within a method and referring to local variables in that method. More complex structures, such an anonymous class which defines a lambda, are not addressed. This change also adds test cases for the bug. The cases which fail are disabled until a fix for the respective case is available. Change-Id: I03e33d98952dfcfe2e1bb840cf6a65cf50a738d1 Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com> 07 January 2019, 13:28:12 UTC
395347a Bug 187217 - Cannot configure logical structure out of the box Change-Id: I568d7a404e4a56da51202e8565309cfc120e7c03 07 January 2019, 05:53:05 UTC
14f5472 Bug 543176 - Bump up version numbers for 4.11 - bump up org.eclipse.jdt.debug and org.eclipse.jdt.debug.tests Change-Id: I835ff375e5f732d990a2077182185ff1d53a08e7 Signed-off-by: Jeff Johnston <jjohnstn@redhat.com> 07 January 2019, 02:57:48 UTC
33c8f2c Bug 536943 - added extra waiting for output monitor to finish This change adds extra waiting to StandardVMType.generateLibraryInfo(File, File), until the output monitor of the started process is done reading the process output. Change-Id: I2c1ec3922dc8bc43f2ef397c8523e2fc7f8f6054 Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com> Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 06 January 2019, 09:09:23 UTC
5ee27e1 Bug 543125 - avoid NPE's on classpath resolving Change-Id: Ifc35e316b07e0a7fbe4704c199720a7d20c9b119 Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 05 January 2019, 16:49:00 UTC
31eda96 Bug 542989 - NPEs with captured lambda variables Inherit from JDIPlaceholderVariable like JDIReturnValueVariable does. Old implementation returned null for getReferenceTypeName which leads to NPE when - showing Declared Type in variables view - calculating variables context menu - completion proposal (already fixed by Bug 542497) Includes unit test for variables view retrieving declared type for lambda captures. Change-Id: I520ff1dc690c045c22cbfa473f22082a090cc096 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de> Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 05 January 2019, 15:03:48 UTC
ca7f1ac Bug 187217 - Cannot configure logical structure out of the box Change-Id: I80cf642e0fe2c53e814fc9b2af341452e9b83063 05 January 2019, 12:51:52 UTC
06ee98e Bug 187217 - Cannot configure logical structure out of the box Change-Id: I508998164473c83c55a23dcc679c50650684250c 03 January 2019, 10:53:35 UTC
3caf056 Bug 542992 - ClassCastException with 'All References' on void return value Add filter for 'All References' to show action only if supplied value is a JDIObjectValue. Change-Id: I0e237a70d93c024d2bfd8603f52b7ddca004f8e8 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de> 02 January 2019, 08:20:38 UTC
63c829b Bug 540243 - Bad selection when opening Debug View on breakpoint When the Debug View is not open and a breakpoint is hit, a preference dictates whether the Debug View is opened. If this preference is used, it is possible to observe a bad selection in the Debug View. E.g. a thread is selected and not a stack frame, or a stack frame and a thread are selected. The problem is seen for Java debug targets, when owned monitors are displayed in the Debug View. When the Debug View debug target element is created, DebugTargetProxy.doInstalled() is called. This will retrieve the first suspended thread and expand it, if such a thread is available. The expand delta contains also the top stack frame at which the thread is suspended. This stack frame is added to the delta with index 0. Unfortunately, owned monitors are displayed before stack frames in the list of thread children. So as soon as the children of the thread are updated for the tree view, a thread owned monitor will replace the selected stack frame. This results in an invalid selection handling, which in turn breaks the selection. This change ensures JavaDebugTargetProxy.getNextSuspendedThreadDelta() also handles existing monitors for the thread. The top suspended stack frame now has index that is greater than 0, if the thread owns monitors. Change-Id: I27be0857844e8faa98f21714512534cc963d5e0b Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com> 12 December 2018, 17:20:23 UTC
ea89b5d Bug 542497 - [8] NPE during completion proposal inside lambda scope Change-Id: I04a456b772a51cf8aa6c6dc29bc94450cd2a535e 12 December 2018, 03:02:55 UTC
edc8f30 Merge remote-tracking branch 'origin/master' into BETA_JAVA_12 11 December 2018, 09:49:32 UTC
29e7478 Bug 541822 - POM and product version change for 4.11 release Change-Id: Ie24341343ab8f5a7d79136aa3a2c36ded6977558 Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com> 07 December 2018, 10:14:26 UTC
6a14d74 Bug 541110 - test case for the bug This change adds a test for bug 541110. The test will run debug snippet with a conditional breakpoint, so that the original bug conditions are reproduced. Without the fixes for bug 541110, the test times out while waiting for debug events. Change-Id: Id84247bb2af9ab4e6e7b256edb629bea20dc3258 Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com> 05 December 2018, 13:09:57 UTC
12ca583 Merge remote-tracking branch 'origin/master' into BETA_JAVA_12 04 December 2018, 06:17:11 UTC
ce8fad7 Bug 538636 - [ASM]Could not instrument class written in console when debugging Change-Id: I68b485d43946c707254f596e0a4316c81411e814 21 November 2018, 09:00:12 UTC
86532af Bug 539570 - Eclipse 2018-09 won't compile Java 11 source; thinks it is below 1.7 Change-Id: I3aafd83a90fa6ed57f5506eb9c31270fdd2886b8 20 November 2018, 05:42:34 UTC
2822fd5 Bug 541263 - fixed JDIHelpers#getStackFrames missing last frame Change-Id: Ib7d0e772ac06c971871e78a2e1dac5cc99900ea4 Signed-off-by: Igor Fedorenko <igor@ifedorenko.com> 19 November 2018, 16:21:08 UTC
7ae13a0 Bug 343031 - There is no icon for java stack trace console Change-Id: I9bc8d4e6b3e29650f0ffbdd75ef82abf525b2f2c 19 November 2018, 10:56:09 UTC
e7afaec Bug 541192 - improve release file handling Don't allow exception to propagate if file is corrupted. Log message rather than printing to the console. Read file in default character set. Change-Id: I77a9e605e0e498b7156efbed585d9a652e940b39 Signed-off-by: Dave Nice <dave@niceweb.org.uk> 19 November 2018, 10:23:29 UTC
b836bf1 Bug 343031 - There is no icon for java stack trace console Change-Id: I0d1a4ef3bd31aec3066925351cc092171dbbde37 19 November 2018, 09:06:27 UTC
6a83eac Bug 541110 - CCE in Instruction.popValue Added filtering for the code locations used to create breakpoints. Filter locations of synthetic methods in case we have more then one candidate, but let at least one location in the list. Change-Id: I8cce85fe90533bc05ea96ece953579442b7abaf9 Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 16 November 2018, 19:59:12 UTC
206b809 Bug 541110 - evaluation should not let zombie jobs on runtime exceptions Wrap runtime exceptions to CoreException, so that ASTEvaluationEngine.EvalRunnable.run().EvaluationRunnable can properly handle them, and release locks on which ConditionalBreakpointHandler.breakpointHit() is waiting. Change-Id: I4a30600f2edeed4abe9f7bbc3e5a04a113f648b3 Signed-off-by: Andrey Loskutov <loskutov@gmx.de> 16 November 2018, 19:57:45 UTC
4ef390e Bug 541137 - Show command line doesn't show the necessary -XstartOnFirstThread on Mac Change-Id: Ib5a76abeb86951df41b7c584c57626fcbc34df35 16 November 2018, 06:16:48 UTC
1b2727b Bug 540570 - Update to ASM 7.0 Change-Id: I4b7087ae71f69988c97c502afa28d59704e62fc8 Signed-off-by: Igor Fedorenko <igor@ifedorenko.com> 15 November 2018, 13:00:39 UTC
back to top