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 269307 - arguments are marked as unused variable
Summary: arguments are marked as unused variable
Status: NEW
Alias: None
Product: javascript
Classification: Unclassified
Component: Editor (show other bugs)
Version: Dev
Hardware: PC Linux
: P3 normal (vote)
Assignee: Petr Pisl
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-12-12 10:22 UTC by Petr Pisl
Modified: 2016-12-12 10:22 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 Petr Pisl 2016-12-12 10:22:45 UTC
Have a simple code:
function f(...arguments) {
    return Array.isArray(arguments);
}

The arguments parameter is marked as unused.