File tree 3 files changed +11
-11
lines changed
3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ is divided into following sections:
46
46
<property file =" ${user.properties.file}" />
47
47
<!-- The two properties below are usually overridden -->
48
48
<!-- by the active platform. Just a fallback. -->
49
- <property name =" default.javac.source" value =" 1.4 " />
50
- <property name =" default.javac.target" value =" 1.4 " />
49
+ <property name =" default.javac.source" value =" 1.6 " />
50
+ <property name =" default.javac.target" value =" 1.6 " />
51
51
</target >
52
52
<target depends =" -pre-init,-init-private,-init-user" name =" -init-project" >
53
53
<property file =" nbproject/configs/${config}.properties" />
@@ -76,7 +76,7 @@ is divided into following sections:
76
76
<and >
77
77
<isset property =" javac.profile" />
78
78
<length length =" 0" string =" ${javac.profile}" when =" greater" />
79
- <matches pattern =" 1\.[89](\..*)?" string =" ${javac.source}" />
79
+ <matches pattern =" (( 1\.[89])|9) (\..*)?" string =" ${javac.source}" />
80
80
</and >
81
81
</condition >
82
82
<condition property =" do.archive" >
Original file line number Diff line number Diff line change 4
4
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5
5
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6
6
nbproject/build-impl.xml.data.CRC32 =48c1b1a1
7
- nbproject/build-impl.xml.script.CRC32 =b8cd7788
8
- nbproject/build-impl.xml.stylesheet.CRC32 =05530350 @1.79 .0.48
7
+ nbproject/build-impl.xml.script.CRC32 =7fd56607
8
+ nbproject/build-impl.xml.stylesheet.CRC32 =2b19b096 @1.80 .0.48
Original file line number Diff line number Diff line change 22
22
*/
23
23
public final class Main {
24
24
25
- private static final String VERSION = "1.1 .0" ;
25
+ private static final String VERSION = "1.2 .0" ;
26
26
27
27
private static String [] ownlangArgs = new String [0 ];
28
28
@@ -34,11 +34,11 @@ public static void main(String[] args) throws IOException {
34
34
if (args .length == 0 ) {
35
35
try {
36
36
final Options options = new Options ();
37
- options .showAst = true ;
38
- options .showTokens = true ;
39
- options .showMeasurements = true ;
37
+ options .showAst = false ;
38
+ options .showTokens = false ;
39
+ options .showMeasurements = false ;
40
40
options .lintMode = false ;
41
- options .optimizationLevel = 2 ;
41
+ options .optimizationLevel = 0 ;
42
42
run (SourceLoader .readSource ("program.own" ), options );
43
43
} catch (IOException ioe ) {
44
44
System .out .println ("OwnLang version " + VERSION + "\n \n " +
@@ -243,7 +243,7 @@ public Options() {
243
243
showAst = false ;
244
244
showMeasurements = false ;
245
245
lintMode = false ;
246
- optimizationLevel = 1 ;
246
+ optimizationLevel = 0 ;
247
247
}
248
248
249
249
public void validate () {
You can’t perform that action at this time.
0 commit comments