Special objects
To save RAM certain objects are treated specially by the runtime, and as a consequence you cannot attach arbitrary properties to them, manipulate their prototypes freely, etc.
- functions (built-in, top-level, nested (closures))
 - static buffers created with the 
hextemplate literals (eg.,hex `00 11 22`) - strings and numbers (
"".myProp === undefinedas expected, but"".myProp = valthrows instead of being ignored as in JS) ds.Fiberds.Register,ds.Event- members ofds.Role
It is OK to add properties to arrays ([].myProp = 1), dynamically allocated buffers,
and of course regular objects and class instances.
The prototype manipulation is limited also for arrays and buffers.