mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-03 09:44:24 +03:00
Window: Provide a little more info on why not EXPOSE()ing some stuff
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
This commit is contained in:
parent
ce7e6d91f5
commit
609ee9b71c
@ -328,14 +328,14 @@ prototype Window()
|
|||||||
EXPOSE(Uint32Array);
|
EXPOSE(Uint32Array);
|
||||||
EXPOSE(Float32Array);
|
EXPOSE(Float32Array);
|
||||||
EXPOSE(Float64Array);
|
EXPOSE(Float64Array);
|
||||||
/* EXPOSE(BigInt64Array); */ /* Duktape seems to lack this */
|
/* EXPOSE(BigInt64Array); */ /* Duktape lacks this - nonstandard API */
|
||||||
/* EXPOSE(BigUint64Array); */ /* Duktape seems to lack this */
|
/* EXPOSE(BigUint64Array); */ /* Duktape lacks this - nonstandard API */
|
||||||
|
|
||||||
/* ** Keyed Collections */
|
/* ** Keyed Collections */
|
||||||
/* EXPOSE(Map); */
|
/* EXPOSE(Map); */ /* Duktape lacks this - ES6 */
|
||||||
/* EXPOSE(Set); */
|
/* EXPOSE(Set); */ /* Duktape lacks this - ES6 */
|
||||||
/* EXPOSE(WeakMap); */
|
/* EXPOSE(WeakMap); */ /* Duktape lacks this - ES6 */
|
||||||
/* EXPOSE(WeakSet); */
|
/* EXPOSE(WeakSet); */ /* Duktape lacks this - ES6 */
|
||||||
|
|
||||||
/* Structured Data */
|
/* Structured Data */
|
||||||
EXPOSE(ArrayBuffer);
|
EXPOSE(ArrayBuffer);
|
||||||
@ -345,9 +345,9 @@ prototype Window()
|
|||||||
EXPOSE(JSON);
|
EXPOSE(JSON);
|
||||||
|
|
||||||
/* ** Control abstraction properties */
|
/* ** Control abstraction properties */
|
||||||
/* EXPOSE(Promise); */ /* Probably ought to be one of ours? */
|
/* EXPOSE(Promise); */ /* Probably ought to be one of ours? Also ES6 */
|
||||||
/* EXPOSE(Generator); */ /* Duktape and async? */
|
/* EXPOSE(Generator); */ /* Duktape and async? ES6 */
|
||||||
/* EXPOSE(GeneratorFunction); */ /* Duktape and async? */
|
/* EXPOSE(GeneratorFunction); */ /* Duktape and async? ES6 */
|
||||||
/* EXPOSE(AsyncFunction); */ /* Duktape lacks this - experimental API */
|
/* EXPOSE(AsyncFunction); */ /* Duktape lacks this - experimental API */
|
||||||
|
|
||||||
/* Reflection */
|
/* Reflection */
|
||||||
@ -356,6 +356,7 @@ prototype Window()
|
|||||||
|
|
||||||
/* ** Internationalisation */
|
/* ** Internationalisation */
|
||||||
/* Duktape lacks Intl - Maybe polyfill it? */
|
/* Duktape lacks Intl - Maybe polyfill it? */
|
||||||
|
/* There is suggestion that cdn.polyfill.io exists for it */
|
||||||
|
|
||||||
/* ** WebAssembly */
|
/* ** WebAssembly */
|
||||||
/* As yet, Duktape lacks WA */
|
/* As yet, Duktape lacks WA */
|
||||||
|
Loading…
Reference in New Issue
Block a user