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

com.whl.quickjs.wrapper.JSObjectCreator Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
package com.whl.quickjs.wrapper;

/**
 * Created by Harlon Wang on 2024/2/15.
 */
public interface JSObjectCreator {
    JSObject newObject(QuickJSContext context, long pointer);
    JSArray newArray(QuickJSContext context, long pointer);
    JSFunction newFunction(QuickJSContext context, long pointer, long thisPointer);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy