mirror of
https://github.com/konsoletyper/teavm.git
synced 2024-11-27 01:30:35 +08:00
js: set maxTopLevelNames to huge value properly
This commit is contained in:
parent
61ef007672
commit
9fd7b9c4e2
@ -76,7 +76,7 @@ public class TeaVMTool {
|
||||
private String targetFileName = "";
|
||||
private boolean obfuscated = true;
|
||||
private boolean strict;
|
||||
private int maxTopLevelNames = 10000;
|
||||
private int maxTopLevelNames = 1000000;
|
||||
private String mainClass;
|
||||
private String entryPointName = "main";
|
||||
private Properties properties = new Properties();
|
||||
|
@ -41,7 +41,7 @@ public class RemoteBuildRequest implements Serializable {
|
||||
public String cacheDirectory;
|
||||
public boolean obfuscated;
|
||||
public boolean strict;
|
||||
public int maxTopLevelNames;
|
||||
public int maxTopLevelNames = 1000000;
|
||||
public Properties properties;
|
||||
public TeaVMOptimizationLevel optimizationLevel;
|
||||
public boolean fastDependencyAnalysis;
|
||||
|
Loading…
Reference in New Issue
Block a user