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 - Step Into (F7) jumps over code
Summary: Step Into (F7) jumps over code
Status: VERIFIED DUPLICATE of bug 188482
Alias: None
Product: javafx
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 6.x
Hardware: PC Windows XP
: P2 normal (vote)
Assignee: Michal Skvor
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-08 13:52 UTC by Alexandr Scherbatiy
Modified: 2010-08-04 08:26 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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