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

javax.script.jtransc.JTranscBindings 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
package javax.script.jtransc;

import javax.script.Bindings;
import java.util.HashMap;
import java.util.Map;

public class JTranscBindings extends HashMap implements Bindings {
	public Object put(String name, Object value) {
		return super.put(name, value);
	}

	public void putAll(Map toMerge) {
		super.putAll(toMerge);
	}

	public boolean containsKey(Object key) {
		return super.containsKey(key);
	}

	public Object get(Object key) {
		return super.get(key);
	}

	public Object remove(Object key) {
		return super.remove(key);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy