You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
netsurf/javascript/duktape/comment.c

51 lines
1.2 KiB

/* DO NOT USE, DODGY BIT FOR VINCE */
#include <dom/dom.h>
#include "utils/log.h"
#include "javascript/dukky.h"
DUKKY_FUNC_INIT(comment, struct dom_node_comment *comment)
{
DUKKY_FUNC_T(character_data, __init)(ctx, &priv->parent, (struct dom_node_character_data *)comment);
LOG("Initialise %p (priv=%p)", duk_get_heapptr(ctx, 0), priv);
}
DUKKY_FUNC_FINI(comment)
{
/* do any comment finalisation here, priv ptr exists */
LOG("Finalise %p", duk_get_heapptr(ctx, 0));
DUKKY_FUNC_T(character_data, __fini)(ctx, &priv->parent);
}
static DUKKY_FUNC(comment, __constructor)
{
DUKKY_CREATE_PRIVATE(comment);
DUKKY_FUNC_T(comment, __init)(ctx, priv,
duk_get_pointer(ctx, 1));
duk_set_top(ctx, 1);
return 1;
}
static DUKKY_FUNC(comment, __destructor)
{
DUKKY_SAFE_GET_PRIVATE(comment, 0);
DUKKY_FUNC_T(comment, __fini)(ctx, priv);
free(priv);
return 0;
}
DUKKY_FUNC(comment, __proto)
{
/* Populate comment's prototypical functionality */
/* Set this prototype's prototype (left-parent)*/
DUKKY_GET_PROTOTYPE(CHARACTERDATA);
duk_set_prototype(ctx, 0);
/* And the initialiser/finalizer */
DUKKY_SET_DESTRUCTOR(0, comment);
DUKKY_SET_CONSTRUCTOR(0, comment, 1);
return 1; /* The proto object */
}