The mode of Overloading :typed or non-typed.true
for typed , false
for non-typed
an array containing the overloads.
the overloaded function
types
), and the second is for the function itself.xTyped
or xNonTyped
.the constructor function of the type (either native or custom)
the type list object to be passed to Function.create
xSelf
to point to the class being created.the custom constructor function to be stamped for recognition
The defintion of the class
the created class
defintion
object are one, two or all of the following: private,protected and public(which are the access modifiers).the component to be marked static.
an object wrapping the component and marked with an isStatic
property.
The function to be marked as final
The marked function
The function to be marked abstract.
The marked function.
method
must be empty. if it's an overloaded function, all the instances must have empty bodies.Abstract
function. The parent class
base
keyword.The defintion of the interface.
The Object represinting the interface
defintion
object is a function with empty body. if it's an overloaded function, all the instances must have empty bodies.an interface to be implemented.
Class.Extends(...).Implements(...)
The Class or Interface to check if the object is instance of it.
true of the object is instance of ancstor. false otherwise.
Object
(which is exaclty every object you make) will have the instanceOf
method.