All Downloads are FREE. Search and download functionalities are using the official Maven repository.

transc-rt.0.3.2.source-code.JavaHaxeInput.hx Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
class JavaHaxeInput {
}

class Haxe extends haxe.io.Input {
	var i: {% CLASS java.io.InputStream %};
	public function new(i) {
		this.i = i;
	}
	override public function readByte():Int return this.i.{% METHOD java.io.InputStream:read:()I %}();
}

class Java extends {% CLASS java.io.InputStream %} {
	var i: haxe.io.Input;
	public function new(i) {
		super();
		this.i = i;
	}
	override public function {% METHOD java.io.InputStream:read:()I %}() return i.readByte();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy