Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 12]
▼NKJS | |
CCollector | Garbage collector |
CCompletion | Completion objects are used to convey the return status and value from functions |
CContextImp | Execution context |
CInternalFunctionImp | Base class for all function objects |
CFunctionPrototypeImp | The initial value of Function.prototype (and thus all objects created with the Function constructor) |
CIdentifier | Represents an Identifier for a Javascript object |
CLabelStack | The "label set" in Ecma-262 spec |
CFunctionImp | Implementation class for functions implemented in JS |
CContext | Represents an execution context, as specified by section 10 of the ECMA spec |
CInterpreter | Interpreter objects can be used to evaluate ECMAScript code |
CExecState | Represents the current state of script execution |
CList | Native list type |
CListIterator | Iterator for KJS::List objects |
CHashEntry | An entry in a hash table |
CHashTable | A hash table Usually the hashtable is generated by the create_hash_table script, from a .table file |
CLookup | Fast keyword lookup |
CBinaryLogicalNode | Expr1 && expr2, expr1 || expr2 |
CConditionalNode | The ternary operator, "logical ? expr1 : expr2" |
CClassInfo | Class Information |
CObject | Represents an Object |
CError | Factory methods for error objects |
CSavedProperties | Saved Properties |
CPropertyMapHashTableEntry | A hashtable entry for the PropertyMap |
CPropertyMap | Javascript Property Map |
CReference | Defines a Javascript reference |
CReferenceListIterator | An iterator for a ReferenceList |
CReferenceList | A list of Reference objects |
CScopeChainNode | A scope chain node |
CScopeChain | A scope chain object |
CUChar | Unicode character |
CUCharReference | Dynamic reference to a string character |
CCString | 8 bit char based string class |
CUString | Unicode string class |
CValueImp | ValueImp is the base type for all primitives (Undefined, Null, Boolean, String, Number) and objects in ECMAScript |
CValue | Value objects are act as wrappers ("smart pointers") around ValueImp objects and their descendents |
CUndefined | Represents an primitive Undefined value |
CNull | Represents an primitive Null value |
CBoolean | Represents an primitive Boolean value |
CString | Represents an primitive String value |
CNumber | Represents an primitive Number value |