Assembla home | Assembla project page
 

{5} Assigned, Active Tickets by Owner (Full Description) (1 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

rauchy

Ticket Summary Component Milestone Type Created
Description
#44 Custom event accessors that also contain other code blocks breaks your code Code Layout defect 10/13/08

Regionerating classes that contain custom event accessors that also contain other code blocks causes regionerate to break your code. It moves the events end } bracket to the end of the file.

Here's an example of the code that will cause this:

public event EventHandler MyEvent 
{
	add { lock (null) { } }
	remove { lock (null) { } }
}

public event EventHandler MyEvent2 
{
	add { if (true) { } }
	remove { if (true) { } }
}

I've confirmed this in v0.6.7.8 and v0.7.


Note: See TracReports for help on using and creating reports.