OpenShot Library | OpenShotAudio
0.2.2
|
Public Types | |
using | Args = const var::NativeFunctionArgs & |
using | TokenType = const char * |
using | ExpPtr = std::unique_ptr< Expression > |
![]() | |
using | Ptr = ReferenceCountedObjectPtr< DynamicObject > |
Public Member Functions | |
void | execute (const String &code) |
var | evaluate (const String &code) |
![]() | |
DynamicObject (const DynamicObject &) | |
virtual bool | hasProperty (const Identifier &propertyName) const |
Returns true if the object has a property with this name. More... | |
virtual const var & | getProperty (const Identifier &propertyName) const |
Returns a named property. More... | |
virtual void | setProperty (const Identifier &propertyName, const var &newValue) |
Sets a named property. More... | |
virtual void | removeProperty (const Identifier &propertyName) |
Removes a named property. More... | |
virtual bool | hasMethod (const Identifier &methodName) const |
Checks whether this object has the specified method. More... | |
virtual var | invokeMethod (Identifier methodName, const var::NativeFunctionArgs &args) |
Invokes a named method on this object. More... | |
void | setMethod (Identifier methodName, var::NativeFunction function) |
Adds a method to the class. More... | |
void | clear () |
Removes all properties and methods from the object. More... | |
NamedValueSet & | getProperties () noexcept |
Returns the NamedValueSet that holds the object's properties. More... | |
void | cloneAllProperties () |
Calls var::clone() on all the properties that this object contains. More... | |
virtual Ptr | clone () |
Returns a clone of this object. More... | |
virtual void | writeAsJSON (OutputStream &, int indentLevel, bool allOnOneLine, int maximumDecimalPlaces) |
Writes this object to a text stream in JSON format. More... | |
![]() | |
void | incReferenceCount () noexcept |
Increments the object's reference count. More... | |
void | decReferenceCount () noexcept |
Decreases the object's reference count. More... | |
bool | decReferenceCountWithoutDeleting () noexcept |
Decreases the object's reference count. More... | |
int | getReferenceCount () const noexcept |
Returns the object's current reference count. More... | |
Static Public Member Functions | |
static bool | areTypeEqual (const var &a, const var &b) |
static String | getTokenName (TokenType t) |
static bool | isFunction (const var &v) noexcept |
static bool | isNumeric (const var &v) noexcept |
static bool | isNumericOrUndefined (const var &v) noexcept |
static int64 | getOctalValue (const String &s) |
static Identifier | getPrototypeIdentifier () |
static var * | getPropertyPointer (DynamicObject &o, const Identifier &i) noexcept |
static var | get (Args a, int index) noexcept |
static bool | isInt (Args a, int index) noexcept |
static int | getInt (Args a, int index) noexcept |
static double | getDouble (Args a, int index) noexcept |
static String | getString (Args a, int index) noexcept |
static var | trace (Args a) |
static var | charToInt (Args a) |
static var | parseFloat (Args a) |
static var | typeof_internal (Args a) |
static var | exec (Args a) |
static var | eval (Args a) |
Public Attributes | |
Time | timeout |
Additional Inherited Members | |
![]() | |
ReferenceCountedObject ()=default | |
Creates the reference-counted object (with an initial ref count of zero). More... | |
ReferenceCountedObject (const ReferenceCountedObject &) noexcept | |
Copying from another object does not affect this one's reference-count. More... | |
ReferenceCountedObject (ReferenceCountedObject &&) noexcept | |
Copying from another object does not affect this one's reference-count. More... | |
ReferenceCountedObject & | operator= (const ReferenceCountedObject &) noexcept |
Copying from another object does not affect this one's reference-count. More... | |
ReferenceCountedObject & | operator= (ReferenceCountedObject &&) noexcept |
Copying from another object does not affect this one's reference-count. More... | |
virtual | ~ReferenceCountedObject () |
Destructor. More... | |
void | resetReferenceCount () noexcept |
Resets the reference count to zero without deleting the object. More... | |
Definition at line 61 of file juce_Javascript.cpp.