diff --git a/website/api/duk_check_stack.txt b/website/api/duk_check_stack.txt
index 0e630ab9..2c9f1e17 100644
--- a/website/api/duk_check_stack.txt
+++ b/website/api/duk_check_stack.txt
@@ -11,7 +11,6 @@ can still occur). The caller MUST NOT rely on being able to push more than
extra
values; although this is possible, such elements are
reserved for Duktape's internal use.
Upon entry to a Duktape/C function and when outside any call
there is an automatic reserve (of DUK_API_ENTRY_STACK
elements)
allocated for the caller in addition to call arguments on the value stack.
diff --git a/website/api/duk_del_var.txt b/website/api/duk_del_var.txt
index 38fb5604..b90f3cca 100644
--- a/website/api/duk_del_var.txt
+++ b/website/api/duk_del_var.txt
@@ -5,7 +5,7 @@ duk_bool_t duk_del_var(duk_context *ctx);
[ ... varname! ] -> [ ... ]
=summary
-FIXME
+XXX
The identifier deletion is equivalent to the Ecmascript expression:
@@ -16,11 +16,10 @@ delete varname Attempt to delete an identifier is compile time SyntaxError in strict mode code. Because Duktape/C functions run in strict mode, the semantics for this call are currently not very useful when called from inside a Duktape/C function. -FIXME. =example -FIXME +XXX =tags variable diff --git a/website/api/duk_has_var.txt b/website/api/duk_has_var.txt index 27e20d4f..3298a547 100644 --- a/website/api/duk_has_var.txt +++ b/website/api/duk_has_var.txt @@ -5,7 +5,7 @@ duk_bool_t duk_has_var(duk_context *ctx); [ ... varname! ] -> [ ... ] =summary -FIXME +XXXThe identifier existence check does not have a direct Ecmascript equivalent. The closest equivalent is:
@@ -23,4 +23,4 @@ variable omit =example -FIXME +XXX diff --git a/website/api/duk_put_var.txt b/website/api/duk_put_var.txt index f508560a..46552009 100644 --- a/website/api/duk_put_var.txt +++ b/website/api/duk_put_var.txt @@ -6,7 +6,6 @@ void duk_put_var(duk_context *ctx); =summary -Write
val
to the identifiervarname
. Possible outcomes:
The identifier write is equivalent to the Ecmascript expression:
@@ -26,7 +25,7 @@ varname = val=example -FIXME +XXX =tags variable