Move compiler to new version, add primitive types. (#33)

This commit is contained in:
Nikolay Igotti
2016-11-03 15:31:33 +03:00
committed by GitHub
parent c6a5ec26d9
commit a2e4f0f467
19 changed files with 1217 additions and 21 deletions
@@ -18,4 +18,17 @@ public class K2NativeCompilerArguments extends CommonCompilerArguments {
@ValueDescription("<path>")
public String[] headers;
public K2NativeCompilerArguments() {
}
public K2NativeCompilerArguments(K2NativeCompilerArguments arguments) {
super(arguments);
this.outputFile = arguments.outputFile;
this.runtimeFile = arguments.runtimeFile;
this.headers = arguments.headers;
}
public CommonCompilerArguments copy() {
return new K2NativeCompilerArguments(this);
}
}