Issue #92: Remove unimplemented function.

This commit is contained in:
Tor Andersson
2019-03-08 14:09:10 +01:00
parent 8e57b47c5d
commit 2c24e194d4
2 changed files with 2 additions and 4 deletions
+2 -3
View File
@@ -365,13 +365,12 @@ Wrapper to push a new error object on the stack using a printf formatting string
<pre>
int js_gettop(js_State *J);
void js_settop(js_State *J, int idx); -- not implemented yet
void js_pop(js_State *J, int n);
void js_rot(js_State *J, int n);
void js_copy(js_State *J, int idx);
void js_remove(js_State *J, int idx);
void js_insert(js_State *J, int idx); -- not implemented yet
void js_replace(js_State* J, int idx); -- not implemented yet
void js_insert(js_State *J, int idx);
void js_replace(js_State* J, int idx);
</pre>
<h3>Comparisons and arithmetic</h3>
-1
View File
@@ -193,7 +193,6 @@ short js_toint16(js_State *J, int idx);
unsigned short js_touint16(js_State *J, int idx);
int js_gettop(js_State *J);
void js_settop(js_State *J, int idx);
void js_pop(js_State *J, int n);
void js_rot(js_State *J, int n);
void js_copy(js_State *J, int idx);