comparison src/luan/impl/Compiled.java @ 1563:8fbcc4747091

remove LuanFunction.luan
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 09 Nov 2020 01:37:57 -0700
parents b89212fd04b5
children 2975c932864d
comparison
equal deleted inserted replaced
1562:b89212fd04b5 1563:8fbcc4747091
131 throw new RuntimeException(e); 131 throw new RuntimeException(e);
132 } 132 }
133 } 133 }
134 134
135 135
136 private static final int VERSION = 5; 136 private static final int VERSION = 6;
137 private static final File tmpDir; 137 private static final File tmpDir;
138 static { 138 static {
139 File f = new File(System.getProperty("java.io.tmpdir")); 139 File f = new File(System.getProperty("java.io.tmpdir"));
140 tmpDir = new File(f,"luan"); 140 tmpDir = new File(f,"luan");
141 tmpDir.mkdir(); 141 tmpDir.mkdir();