Object..Root.ObjectConstructs new Object. Any variable created with keyword auto or auto is initialized with Object type.
ObjectObject type signatures:Object
NativeCallable, Callable, Class
debugTree=getParentgetChildgetChildrenArrayhasChildaddChildremoveChildgetNamesetNamecopy!====auto mother;
auto father;
mother.var son;
father.var daughter;
mother.addChild("step-daughter", father.getChild("daughter"));
mother.addChild(Object());
auto childrenArray.=(mother.getChildrenArray());
for (auto it.=(childrenArray.begin()).!=, childrenArray.end(), it.++, {
if (instanceOf(it.get(), Object), {
log(it.get().getName());
});
});
son
daughter
Anonymous3384