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 258922 - Allow parsing for big files and minified files in editor
Summary: Allow parsing for big files and minified files in editor
Status: NEW
Alias: None
Product: javascript
Classification: Unclassified
Component: Editor (show other bugs)
Version: 8.2
Hardware: PC Linux
: P3 normal (vote)
Assignee: Petr Pisl
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-04-20 13:00 UTC by Petr Pisl
Modified: 2016-04-20 20:43 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Petr Pisl 2016-04-20 13:00:35 UTC
Currently by default big files and minified files are not parsed. If user want to work with such files, the values of system properties should be chaned:

Boolean.getBoolean("nb.js.parse.big.files"); 
Integer.getInteger("nb.js.big.file.size", 1024 * 1024);
Integer.getInteger("nb.js.big.minimize.file.size", 0);

The problem is that these files can not be formatted in editor etc. It would be better that these files will be parsed if they are open in editor only.