com.koushikdutta.quack.QuackJavaScriptObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickjs Show documentation
Show all versions of quickjs Show documentation
The quickjs embeddable Javascript engine packaged for Java.
package com.koushikdutta.quack;
public interface QuackJavaScriptObject {
long getNativePointer();
long getNativeContext();
JavaScriptObject getJavaScriptObject();
}