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 135676

Summary: Local Variables window should explicitly show JavaFX variables and class attributes
Product: javafx Reporter: Alexandr Scherbatiy <sunflower>
Component: DebuggerAssignee: Alexey Butenko <alexeybutenko>
Status: VERIFIED FIXED    
Severity: blocker    
Priority: P2    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:
Bug Depends on: 144351    
Bug Blocks:    

Description Alexandr Scherbatiy 2008-05-23 11:11:43 UTC
Steps to reproduce:

- Create a JavaFX Script file:
------------------------------------------
import java.lang.System;

class A{
    public attribute a: Number ;
}

var c = 10;

var a = A{ a: 20 };

System.out.println(a);
------------------------------------------

- Add Breakpoint to the last line
- Run the Debugger
  The debugger stops on the Breakpoint
- Go to Local Variables window
  Expand the tree in the window

  The 'c' variable and 'a' class are not explicitly shown in the window
Comment 1 Alexey Butenko 2008-10-20 09:49:50 UTC
It is fixed
Comment 2 Alexandr Scherbatiy 2008-10-22 09:12:11 UTC
verified in 2008-10-22_03-01-09.zip