mildew.types.object

This module implements ScriptObject, the base class for builtin Mildew objects.

Members

Classes

ScriptObject
class ScriptObject

General Object class. Unlike JavaScript, the __proto__ property only shows up when asked for. This allows allows objects to be used as dictionaries without extraneous values showing up in the for-of loop. Native D objects can be stored in any ScriptObject or derived class by assigning it to its nativeObject field.

Meta