Bug 473992 - [debug] Conditional break point, runtime exception
Summary: [debug] Conditional break point, runtime exception
Status: NEW
Alias: None
Product: Xtend
Classification: Tools
Component: Core (show other bugs)
Version: 2.9.0   Edit
Hardware: PC Mac OS X
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-07-31 04:47 EDT by Dennis Huebner CLA
Modified: 2015-07-31 04:47 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dennis Huebner CLA 2015-07-31 04:47:33 EDT
Conditional breakpoint placed on the same line as a lambda cause a Runtime exception reported in an error dialog.

Doesn't work:
> args = featureCall.syntacticArguments.map[types.getActualType(it)]

Works:
> args = featureCall.syntacticArguments
				.map[types.getActualType(it)]