2010-01-21 15:54:19 +01:00
|
|
|
/**************************************************************************
|
|
|
|
**
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
**
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
**
|
|
|
|
** Commercial Usage
|
|
|
|
**
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
**
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
**
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
**
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
**
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QMLJS_INTERPRETER_H
|
|
|
|
#define QMLJS_INTERPRETER_H
|
|
|
|
|
2010-01-26 14:50:52 +01:00
|
|
|
#include <qmljs/qmljs_global.h>
|
|
|
|
#include <qmljs/qmljsmetatypesystem.h>
|
2010-01-21 15:54:19 +01:00
|
|
|
|
|
|
|
#include <QtCore/QList>
|
|
|
|
#include <QtCore/QString>
|
|
|
|
#include <QtCore/QHash>
|
|
|
|
#include <QtCore/QSet>
|
|
|
|
|
|
|
|
namespace QmlJS {
|
|
|
|
namespace Interpreter {
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Forward declarations
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class Engine;
|
|
|
|
class Value;
|
|
|
|
class NullValue;
|
|
|
|
class UndefinedValue;
|
|
|
|
class NumberValue;
|
|
|
|
class BooleanValue;
|
|
|
|
class StringValue;
|
|
|
|
class ObjectValue;
|
|
|
|
class FunctionValue;
|
|
|
|
|
2010-01-24 11:10:01 +01:00
|
|
|
typedef QList<const Value *> ValueList;
|
|
|
|
|
2010-01-21 15:54:19 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Value visitor
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class QMLJS_EXPORT ValueVisitor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ValueVisitor();
|
|
|
|
virtual ~ValueVisitor();
|
|
|
|
|
|
|
|
virtual void visit(const NullValue *);
|
|
|
|
virtual void visit(const UndefinedValue *);
|
|
|
|
virtual void visit(const NumberValue *);
|
|
|
|
virtual void visit(const BooleanValue *);
|
|
|
|
virtual void visit(const StringValue *);
|
|
|
|
virtual void visit(const ObjectValue *);
|
|
|
|
virtual void visit(const FunctionValue *);
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// QML/JS value
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class QMLJS_EXPORT Value
|
|
|
|
{
|
|
|
|
Value(const Value &other);
|
|
|
|
void operator = (const Value &other);
|
|
|
|
|
|
|
|
public:
|
|
|
|
Value();
|
|
|
|
virtual ~Value();
|
|
|
|
|
|
|
|
virtual const NullValue *asNullValue() const;
|
|
|
|
virtual const UndefinedValue *asUndefinedValue() const;
|
|
|
|
virtual const NumberValue *asNumberValue() const;
|
|
|
|
virtual const BooleanValue *asBooleanValue() const;
|
|
|
|
virtual const StringValue *asStringValue() const;
|
|
|
|
virtual const ObjectValue *asObjectValue() const;
|
|
|
|
virtual const FunctionValue *asFunctionValue() const;
|
|
|
|
|
|
|
|
virtual void accept(ValueVisitor *) const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename _RetTy> _RetTy value_cast(const Value *v);
|
|
|
|
|
|
|
|
template <> Q_INLINE_TEMPLATE const NullValue *value_cast(const Value *v)
|
|
|
|
{
|
|
|
|
if (v) return v->asNullValue();
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> Q_INLINE_TEMPLATE const UndefinedValue *value_cast(const Value *v)
|
|
|
|
{
|
|
|
|
if (v) return v->asUndefinedValue();
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> Q_INLINE_TEMPLATE const NumberValue *value_cast(const Value *v)
|
|
|
|
{
|
|
|
|
if (v) return v->asNumberValue();
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> Q_INLINE_TEMPLATE const BooleanValue *value_cast(const Value *v)
|
|
|
|
{
|
|
|
|
if (v) return v->asBooleanValue();
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> Q_INLINE_TEMPLATE const StringValue *value_cast(const Value *v)
|
|
|
|
{
|
|
|
|
if (v) return v->asStringValue();
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> Q_INLINE_TEMPLATE const ObjectValue *value_cast(const Value *v)
|
|
|
|
{
|
|
|
|
if (v) return v->asObjectValue();
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> Q_INLINE_TEMPLATE const FunctionValue *value_cast(const Value *v)
|
|
|
|
{
|
|
|
|
if (v) return v->asFunctionValue();
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Execution environment
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class QMLJS_EXPORT Environment
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Environment();
|
|
|
|
virtual ~Environment();
|
|
|
|
|
|
|
|
virtual const Environment *parent() const;
|
|
|
|
virtual const Value *lookup(const QString &name) const;
|
|
|
|
virtual const Value *lookupMember(const QString &name) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Value nodes
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class QMLJS_EXPORT NullValue: public Value
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual const NullValue *asNullValue() const;
|
|
|
|
virtual void accept(ValueVisitor *visitor) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QMLJS_EXPORT UndefinedValue: public Value
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual const UndefinedValue *asUndefinedValue() const;
|
|
|
|
virtual void accept(ValueVisitor *visitor) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QMLJS_EXPORT NumberValue: public Value
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual const NumberValue *asNumberValue() const;
|
|
|
|
virtual void accept(ValueVisitor *visitor) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QMLJS_EXPORT BooleanValue: public Value
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual const BooleanValue *asBooleanValue() const;
|
|
|
|
virtual void accept(ValueVisitor *visitor) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QMLJS_EXPORT StringValue: public Value
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual const StringValue *asStringValue() const;
|
|
|
|
virtual void accept(ValueVisitor *visitor) const;
|
|
|
|
};
|
|
|
|
|
2010-01-24 11:10:01 +01:00
|
|
|
class QMLJS_EXPORT MemberProcessor
|
|
|
|
{
|
|
|
|
MemberProcessor(const MemberProcessor &other);
|
|
|
|
void operator = (const MemberProcessor &other);
|
|
|
|
|
|
|
|
public:
|
2010-01-26 10:10:11 +01:00
|
|
|
MemberProcessor();
|
|
|
|
virtual ~MemberProcessor();
|
2010-01-24 11:10:01 +01:00
|
|
|
|
|
|
|
// Returns false to stop the processor.
|
2010-01-26 10:10:11 +01:00
|
|
|
virtual bool processProperty(const QString &name, const Value *value);
|
2010-01-28 15:50:58 +01:00
|
|
|
virtual bool processEnumerator(const QString &name, const Value *value);
|
2010-01-26 10:10:11 +01:00
|
|
|
virtual bool processSignal(const QString &name, const Value *value);
|
|
|
|
virtual bool processSlot(const QString &name, const Value *value);
|
2010-01-26 10:19:42 +01:00
|
|
|
virtual bool processGeneratedSlot(const QString &name, const Value *value);
|
2010-01-24 11:10:01 +01:00
|
|
|
};
|
|
|
|
|
2010-01-21 15:54:19 +01:00
|
|
|
class QMLJS_EXPORT ObjectValue: public Value, public Environment
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ObjectValue(Engine *engine);
|
2010-01-24 11:10:01 +01:00
|
|
|
virtual ~ObjectValue();
|
2010-01-21 15:54:19 +01:00
|
|
|
|
|
|
|
Engine *engine() const;
|
|
|
|
|
|
|
|
QString className() const;
|
|
|
|
void setClassName(const QString &className);
|
|
|
|
|
|
|
|
const ObjectValue *prototype() const;
|
|
|
|
void setPrototype(const ObjectValue *prototype);
|
|
|
|
|
|
|
|
const ObjectValue *scope() const;
|
|
|
|
void setScope(const ObjectValue *scope);
|
|
|
|
|
2010-01-24 11:10:01 +01:00
|
|
|
virtual void processMembers(MemberProcessor *processor) const;
|
2010-01-21 15:54:19 +01:00
|
|
|
|
|
|
|
virtual const Value *property(const QString &name) const;
|
|
|
|
virtual void setProperty(const QString &name, const Value *value);
|
|
|
|
virtual void removeProperty(const QString &name);
|
|
|
|
|
|
|
|
// Environment interface
|
|
|
|
virtual const Environment *parent() const;
|
|
|
|
virtual const Value *lookupMember(const QString &name) const;
|
|
|
|
|
|
|
|
// Value interface
|
|
|
|
virtual const ObjectValue *asObjectValue() const;
|
|
|
|
virtual void accept(ValueVisitor *visitor) const;
|
|
|
|
|
|
|
|
private:
|
2010-01-24 11:10:01 +01:00
|
|
|
bool checkPrototype(const ObjectValue *prototype, QSet<const ObjectValue *> *processed) const;
|
2010-01-21 15:54:19 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
Engine *_engine;
|
|
|
|
const ObjectValue *_prototype;
|
|
|
|
const ObjectValue *_scope;
|
|
|
|
QHash<QString, const Value *> _members;
|
|
|
|
QString _className;
|
|
|
|
};
|
|
|
|
|
2010-01-26 14:50:52 +01:00
|
|
|
#ifndef NO_DECLARATIVE_BACKEND
|
|
|
|
|
|
|
|
class QmlObjectValue: public ObjectValue
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QmlObjectValue(const QMetaObject *metaObject, const QString &qmlTypeName, int majorVersion, int minorVersion, Engine *engine);
|
|
|
|
virtual ~QmlObjectValue();
|
|
|
|
|
|
|
|
virtual const Value *lookupMember(const QString &name) const;
|
|
|
|
virtual void processMembers(MemberProcessor *processor) const;
|
|
|
|
const Value *propertyValue(const QMetaProperty &prop) const;
|
|
|
|
|
|
|
|
QString qmlTypeName() const
|
|
|
|
{ return _qmlTypeName; }
|
|
|
|
|
|
|
|
int majorVersion() const
|
|
|
|
{ return _majorVersion; }
|
|
|
|
|
|
|
|
int minorVersion() const
|
|
|
|
{ return _minorVersion; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const QMetaObject *_metaObject;
|
|
|
|
QString _qmlTypeName;
|
|
|
|
int _majorVersion;
|
|
|
|
int _minorVersion;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !NO_DECLARATIVE_BACKEND
|
|
|
|
|
2010-01-28 14:11:56 +01:00
|
|
|
class QMLJS_EXPORT Activation
|
2010-01-24 11:35:11 +01:00
|
|
|
{
|
|
|
|
public:
|
2010-01-28 14:11:56 +01:00
|
|
|
Activation();
|
2010-01-24 11:35:11 +01:00
|
|
|
virtual ~Activation();
|
|
|
|
|
|
|
|
bool calledAsConstructor() const;
|
|
|
|
void setCalledAsConstructor(bool calledAsConstructor);
|
|
|
|
|
|
|
|
bool calledAsFunction() const;
|
|
|
|
void setCalledAsFunction(bool calledAsFunction);
|
|
|
|
|
|
|
|
ObjectValue *thisObject() const;
|
|
|
|
void setThisObject(ObjectValue *thisObject);
|
|
|
|
|
|
|
|
ValueList arguments() const;
|
|
|
|
void setArguments(const ValueList &arguments);
|
|
|
|
|
|
|
|
private:
|
|
|
|
ObjectValue *_thisObject;
|
|
|
|
ValueList _arguments;
|
|
|
|
bool _calledAsFunction;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-01-21 15:54:19 +01:00
|
|
|
class QMLJS_EXPORT FunctionValue: public ObjectValue
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FunctionValue(Engine *engine);
|
2010-01-24 11:10:01 +01:00
|
|
|
virtual ~FunctionValue();
|
|
|
|
|
|
|
|
// [[construct]]
|
|
|
|
const Value *construct(const ValueList &actuals = ValueList()) const;
|
|
|
|
|
|
|
|
// [[call]]
|
|
|
|
const Value *call(const ValueList &actuals = ValueList()) const;
|
|
|
|
|
|
|
|
const Value *call(const ObjectValue *thisObject,
|
|
|
|
const ValueList &actuals = ValueList()) const;
|
|
|
|
|
2010-01-21 15:54:19 +01:00
|
|
|
|
|
|
|
virtual const Value *returnValue() const;
|
|
|
|
|
|
|
|
virtual int argumentCount() const;
|
2010-01-24 11:10:01 +01:00
|
|
|
virtual const Value *argument(int index) const;
|
2010-01-26 10:50:30 +01:00
|
|
|
virtual QString argumentName(int index) const;
|
|
|
|
virtual bool isVariadic() const;
|
2010-01-21 15:54:19 +01:00
|
|
|
|
2010-01-24 11:35:11 +01:00
|
|
|
virtual const Value *invoke(const Activation *activation) const;
|
2010-01-21 15:54:19 +01:00
|
|
|
|
|
|
|
// Value interface
|
|
|
|
virtual const FunctionValue *asFunctionValue() const;
|
|
|
|
virtual void accept(ValueVisitor *visitor) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QMLJS_EXPORT Function: public FunctionValue
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Function(Engine *engine);
|
2010-01-24 11:35:11 +01:00
|
|
|
virtual ~Function();
|
2010-01-21 15:54:19 +01:00
|
|
|
|
2010-01-24 11:10:01 +01:00
|
|
|
void addArgument(const Value *argument);
|
2010-01-21 15:54:19 +01:00
|
|
|
void setReturnValue(const Value *returnValue);
|
|
|
|
|
|
|
|
// ObjectValue interface
|
|
|
|
virtual const Value *property(const QString &name) const;
|
|
|
|
|
|
|
|
// FunctionValue interface
|
|
|
|
virtual const Value *returnValue() const;
|
|
|
|
virtual int argumentCount() const;
|
|
|
|
virtual const Value *argument(int index) const;
|
2010-01-24 11:35:11 +01:00
|
|
|
virtual const Value *invoke(const Activation *activation) const;
|
2010-01-21 15:54:19 +01:00
|
|
|
|
|
|
|
private:
|
2010-01-24 11:10:01 +01:00
|
|
|
ValueList _arguments;
|
2010-01-21 15:54:19 +01:00
|
|
|
const Value *_returnValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// typing environment
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class ConvertToNumber: protected ValueVisitor // ECMAScript ToInt()
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ConvertToNumber(Engine *engine);
|
|
|
|
|
|
|
|
const Value *operator()(const Value *value);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
const Value *switchResult(const Value *value);
|
|
|
|
|
|
|
|
virtual void visit(const NullValue *);
|
|
|
|
virtual void visit(const UndefinedValue *);
|
|
|
|
virtual void visit(const NumberValue *);
|
|
|
|
virtual void visit(const BooleanValue *);
|
|
|
|
virtual void visit(const StringValue *);
|
|
|
|
virtual void visit(const ObjectValue *);
|
|
|
|
virtual void visit(const FunctionValue *);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Engine *_engine;
|
|
|
|
const Value *_result;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ConvertToString: protected ValueVisitor // ECMAScript ToString
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ConvertToString(Engine *engine);
|
|
|
|
|
|
|
|
const Value *operator()(const Value *value);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
const Value *switchResult(const Value *value);
|
|
|
|
|
|
|
|
virtual void visit(const NullValue *);
|
|
|
|
virtual void visit(const UndefinedValue *);
|
|
|
|
virtual void visit(const NumberValue *);
|
|
|
|
virtual void visit(const BooleanValue *);
|
|
|
|
virtual void visit(const StringValue *);
|
|
|
|
virtual void visit(const ObjectValue *);
|
|
|
|
virtual void visit(const FunctionValue *);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Engine *_engine;
|
|
|
|
const Value *_result;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ConvertToObject: protected ValueVisitor // ECMAScript ToObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ConvertToObject(Engine *engine);
|
|
|
|
|
|
|
|
const Value *operator()(const Value *value);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
const Value *switchResult(const Value *value);
|
|
|
|
|
|
|
|
virtual void visit(const NullValue *);
|
|
|
|
virtual void visit(const UndefinedValue *);
|
|
|
|
virtual void visit(const NumberValue *);
|
|
|
|
virtual void visit(const BooleanValue *);
|
|
|
|
virtual void visit(const StringValue *);
|
|
|
|
virtual void visit(const ObjectValue *);
|
|
|
|
virtual void visit(const FunctionValue *);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Engine *_engine;
|
|
|
|
const Value *_result;
|
|
|
|
};
|
|
|
|
|
|
|
|
class TypeId: protected ValueVisitor
|
|
|
|
{
|
|
|
|
QString _result;
|
|
|
|
|
|
|
|
public:
|
|
|
|
QString operator()(const Value *value);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void visit(const NullValue *);
|
|
|
|
virtual void visit(const UndefinedValue *);
|
|
|
|
virtual void visit(const NumberValue *);
|
|
|
|
virtual void visit(const BooleanValue *);
|
|
|
|
virtual void visit(const StringValue *);
|
|
|
|
virtual void visit(const ObjectValue *object);
|
|
|
|
virtual void visit(const FunctionValue *object);
|
|
|
|
};
|
|
|
|
|
|
|
|
class QMLJS_EXPORT Engine
|
|
|
|
{
|
|
|
|
Engine(const Engine &other);
|
|
|
|
void operator = (const Engine &other);
|
|
|
|
|
|
|
|
public:
|
|
|
|
Engine();
|
|
|
|
~Engine();
|
|
|
|
|
|
|
|
const NullValue *nullValue() const;
|
|
|
|
const UndefinedValue *undefinedValue() const;
|
|
|
|
const NumberValue *numberValue() const;
|
|
|
|
const BooleanValue *booleanValue() const;
|
|
|
|
const StringValue *stringValue() const;
|
|
|
|
|
2010-01-24 11:35:11 +01:00
|
|
|
ObjectValue *newObject(const ObjectValue *prototype);
|
2010-01-21 15:54:19 +01:00
|
|
|
ObjectValue *newObject();
|
|
|
|
Function *newFunction();
|
2010-01-24 11:35:11 +01:00
|
|
|
const Value *newArray(); // ### remove me
|
2010-01-21 15:54:19 +01:00
|
|
|
|
2010-01-24 13:29:46 +01:00
|
|
|
// QML objects
|
2010-01-26 11:06:28 +01:00
|
|
|
const ObjectValue *qmlKeysObject();
|
2010-01-26 11:15:21 +01:00
|
|
|
const Value *defaultValueForBuiltinType(const QString &typeName) const;
|
2010-01-26 14:50:52 +01:00
|
|
|
#ifndef NO_DECLARATIVE_BACKEND
|
|
|
|
QmlObjectValue *newQmlObject(const QString &name, const QString &prefix, int majorVersion, int minorVersion);
|
|
|
|
#endif
|
2010-01-24 13:29:46 +01:00
|
|
|
|
2010-01-21 15:54:19 +01:00
|
|
|
// global object
|
|
|
|
ObjectValue *globalObject() const;
|
|
|
|
const ObjectValue *mathObject() const;
|
|
|
|
|
2010-01-26 10:50:30 +01:00
|
|
|
void registerObject(ObjectValue *object);
|
|
|
|
|
2010-01-21 15:54:19 +01:00
|
|
|
// prototypes
|
|
|
|
ObjectValue *objectPrototype() const;
|
|
|
|
ObjectValue *functionPrototype() const;
|
|
|
|
ObjectValue *numberPrototype() const;
|
|
|
|
ObjectValue *booleanPrototype() const;
|
|
|
|
ObjectValue *stringPrototype() const;
|
|
|
|
ObjectValue *arrayPrototype() const;
|
|
|
|
ObjectValue *datePrototype() const;
|
|
|
|
ObjectValue *regexpPrototype() const;
|
|
|
|
|
|
|
|
// ctors
|
|
|
|
const FunctionValue *objectCtor() const;
|
|
|
|
const FunctionValue *functionCtor() const;
|
|
|
|
const FunctionValue *arrayCtor() const;
|
|
|
|
const FunctionValue *stringCtor() const;
|
|
|
|
const FunctionValue *booleanCtor() const;
|
|
|
|
const FunctionValue *numberCtor() const;
|
|
|
|
const FunctionValue *dateCtor() const;
|
|
|
|
const FunctionValue *regexpCtor() const;
|
|
|
|
|
|
|
|
// operators
|
2010-01-24 11:35:11 +01:00
|
|
|
const Value *convertToBoolean(const Value *value);
|
2010-01-21 15:54:19 +01:00
|
|
|
const Value *convertToNumber(const Value *value);
|
|
|
|
const Value *convertToString(const Value *value);
|
|
|
|
const Value *convertToObject(const Value *value);
|
|
|
|
QString typeId(const Value *value);
|
|
|
|
|
2010-01-26 14:50:52 +01:00
|
|
|
// typing:
|
|
|
|
const MetaTypeSystem &metaTypeSystem() const
|
|
|
|
{ return _metaTypeSystem; }
|
|
|
|
|
2010-01-21 15:54:19 +01:00
|
|
|
private:
|
|
|
|
void initializePrototypes();
|
|
|
|
|
|
|
|
void addFunction(ObjectValue *object, const QString &name, const Value *result, int argumentCount);
|
|
|
|
void addFunction(ObjectValue *object, const QString &name, int argumentCount);
|
|
|
|
|
|
|
|
private:
|
|
|
|
ObjectValue *_objectPrototype;
|
|
|
|
ObjectValue *_functionPrototype;
|
|
|
|
ObjectValue *_numberPrototype;
|
|
|
|
ObjectValue *_booleanPrototype;
|
|
|
|
ObjectValue *_stringPrototype;
|
|
|
|
ObjectValue *_arrayPrototype;
|
|
|
|
ObjectValue *_datePrototype;
|
|
|
|
ObjectValue *_regexpPrototype;
|
|
|
|
|
|
|
|
Function *_objectCtor;
|
|
|
|
Function *_functionCtor;
|
|
|
|
Function *_arrayCtor;
|
|
|
|
Function *_stringCtor;
|
|
|
|
Function *_booleanCtor;
|
|
|
|
Function *_numberCtor;
|
|
|
|
Function *_dateCtor;
|
|
|
|
Function *_regexpCtor;
|
|
|
|
|
|
|
|
ObjectValue *_globalObject;
|
|
|
|
ObjectValue *_mathObject;
|
2010-01-26 12:06:44 +01:00
|
|
|
#ifndef NO_DECLARATIVE_BACKEND
|
2010-01-26 11:06:28 +01:00
|
|
|
ObjectValue *_qmlKeysObject;
|
2010-01-26 12:06:44 +01:00
|
|
|
#endif
|
2010-01-21 15:54:19 +01:00
|
|
|
|
|
|
|
NullValue _nullValue;
|
|
|
|
UndefinedValue _undefinedValue;
|
|
|
|
NumberValue _numberValue;
|
|
|
|
BooleanValue _booleanValue;
|
|
|
|
StringValue _stringValue;
|
2010-01-28 14:11:56 +01:00
|
|
|
QList<ObjectValue *> _registeredObjects;
|
2010-01-21 15:54:19 +01:00
|
|
|
|
|
|
|
ConvertToNumber _convertToNumber;
|
|
|
|
ConvertToString _convertToString;
|
|
|
|
ConvertToObject _convertToObject;
|
|
|
|
TypeId _typeId;
|
2010-01-26 14:50:52 +01:00
|
|
|
|
|
|
|
MetaTypeSystem _metaTypeSystem;
|
2010-01-21 15:54:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} } // end of namespace QmlJS::Interpreter
|
|
|
|
|
|
|
|
#endif // QMLJS_INTERPRETER_H
|