This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 188492

Summary: Step Into (F7) jumps over code
Product: javafx Reporter: Alexandr Scherbatiy <sunflower>
Component: DebuggerAssignee: Michal Skvor <misk>
Status: VERIFIED DUPLICATE    
Severity: normal    
Priority: P2    
Version: 6.x   
Hardware: PC   
OS: Windows XP   
Issue Type: DEFECT Exception Reporter:

Description Alexandr Scherbatiy 2010-07-08 13:52:15 UTC
JavaFX Composer FXJDI Build #49 (Jul 8, 2010 7:48:33 AM)

Steps to reproduce:

- Copy the code to Main file:
-----------------------------------
var a = 10;
var b = a + 10;
var c = b + 40;

println("c");
-----------------------------------

- Set a breakpoint to 'b' variable declaration (second line)
- Debug the project

- Press F7 (Step Into)
 The Current program Counter jumps to the last line 'println("c");'
  instead of the next line  'var c = b + 40;'
Comment 1 Michal Skvor 2010-08-03 13:23:27 UTC
*** Bug 188482 has been marked as a duplicate of this bug. ***
Comment 2 Michal Skvor 2010-08-03 14:57:02 UTC

*** This bug has been marked as a duplicate of bug 188482 ***
Comment 3 Alexandr Scherbatiy 2010-08-04 08:26:09 UTC
verified