Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 711 Bytes

object.adoc

File metadata and controls

42 lines (27 loc) · 711 Bytes

Object

Class Object is the root of the class hierarchy. Every class has Object as a superclass.

Instance attributes

__class ⇒ Class

Object of [class-class] class

Instance methods

__get(name) ⇒ Value

Get any attribute value by it’s name

Table 1. Parameters

name

String

Name of the attribute

Return

Attribute value

__invoke(name, …​) ⇒ Value

Execute any method, by it’s name

Table 2. Parameters

name

String

Name of the method

…​

Value

Any values that are required for method execution

Return

Method return value if method returns something