Bug 328305 - formatter should not insert space between function name and ()
Summary: formatter should not insert space between function name and ()
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: b3 (show other bugs)
Version: unspecified   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-10-20 20:48 EDT by Henrik Lindberg CLA
Modified: 2017-09-13 11:52 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 Henrik Lindberg CLA 2010-10-20 20:48:48 EDT
The input:
  foo();
is formatted:
  foo ();

Remove the space between function name and () in the formatting rules.
Comment 1 Henrik Lindberg CLA 2010-10-20 20:49:52 EDT
The same applies for function definitions:

function foo() : 1;
is formatted:

function foo () : 1;