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 269789 - Debugger not stops at breakpoint with linebreak
Summary: Debugger not stops at breakpoint with linebreak
Status: NEW
Alias: None
Product: debugger
Classification: Unclassified
Component: Code (show other bugs)
Version: Dev
Hardware: PC Windows 10 x64
: P3 normal (vote)
Assignee: Martin Entlicher
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-02-10 10:00 UTC by lolka_bolka
Modified: 2017-02-10 10:00 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 lolka_bolka 2017-02-10 10:00:35 UTC
I am develop a simple PHP web page, and I need to set a debug point. I want to set this debug point at a value assign to an array. 

Since, this is a multidimensional array, I am using line breaks after each elements. In this case, at the assignment the debugger do not stops.

If I am removing new lines, the debugger stops. 


Not stops:

$halfLine[] = [   // <!-- breakpoint here
	'x' => $tmp['x1'],
	'y' => $tmp['y1']
];


In this case stops.

$halfLine[] = ['x' => $tmp['x1'], 'y' => $tmp['y1']];