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 250039 - Try-catch formatting does not remove new line
Summary: Try-catch formatting does not remove new line
Status: VERIFIED FIXED
Alias: None
Product: javascript
Classification: Unclassified
Component: Formatting & Indentation (show other bugs)
Version: 8.1
Hardware: PC Linux
: P3 normal (vote)
Assignee: Roman Svitanic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-01-27 07:17 UTC by Vladimir Riha
Modified: 2015-03-30 20:13 UTC (History)
1 user (show)

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 Vladimir Riha 2015-01-27 07:17:18 UTC
Please try in JS file


try
    {

    }
    catch (e)
    {

    } finally
    {

    }


and set formatting for try/catch/finally to "New Line Indented". After formatting the code, the result is

try
    {

    }
catch (e)
    {

    } finally
    {

    }


while I think it should be (as in PHP)


try
    {

    } catch (e)
    {

    } finally
    {

    }


Thank you


Product Version: NetBeans IDE Dev (Build web-main-1841-on-20150127)
Java: 1.8.0_25; Java HotSpot(TM) Client VM 25.25-b02
Runtime: Java(TM) SE Runtime Environment 1.8.0_25-b17
System: Linux version 3.13.0-35-generic running on i386; UTF-8; en_US (nb)
Comment 1 Vladimir Riha 2015-01-27 07:49:34 UTC
Similar use case:
 - set formatting for try/catch to Same line
 - try to format

try {
    console.log(1);
}
catch (e) {
    console.log(1);
}
finally {
    console.log(1);
}

 => nothing happens. In PHP the catch and finally are moved to single line with preceding }
Comment 2 Roman Svitanic 2015-03-25 12:50:48 UTC
Fixed in web-main together with #250038:
266facf3ed31
Comment 3 Quality Engineering 2015-03-26 03:24:16 UTC
Integrated into 'main-silver', will be available in build *201503260001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/266facf3ed31
User: Roman Svitanic <rsvitanic@netbeans.org>
Log: #250038 and #250039: Alignment options for new line before else/while/catch/finally keywords
Task #250038 - If-else on same line does not remove new line
Comment 4 Vladimir Riha 2015-03-30 20:13:57 UTC
Thank you, verified


Product Version: NetBeans IDE Dev (Build 201503300001)
Java: 1.7.0_45; Java HotSpot(TM) 64-Bit Server VM 24.45-b08
Runtime: Java(TM) SE Runtime Environment 1.7.0_45-b18
System: Linux version 3.13.0-45-generic running on amd64; UTF-8; en_US (nb)