2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-01-18 16:15:23 +01:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2010-01-18 16:15:23 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-01-18 16:15:23 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2010-01-18 16:15:23 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-01-18 16:15:23 +01:00
|
|
|
|
2013-03-12 12:09:22 +01:00
|
|
|
#ifndef QMLJSEVALUATE_H
|
|
|
|
|
#define QMLJSEVALUATE_H
|
2010-01-18 16:15:23 +01:00
|
|
|
|
|
|
|
|
#include "parser/qmljsastvisitor_p.h"
|
|
|
|
|
#include "qmljsdocument.h"
|
2011-07-12 14:55:27 +02:00
|
|
|
#include "qmljsscopechain.h"
|
2010-01-18 16:15:23 +01:00
|
|
|
|
2014-02-05 13:07:46 +01:00
|
|
|
#include <utils/qtcoverride.h>
|
|
|
|
|
|
2010-01-18 16:15:23 +01:00
|
|
|
namespace QmlJS {
|
|
|
|
|
|
2011-08-08 12:47:49 +02:00
|
|
|
class ValueOwner;
|
|
|
|
|
class Context;
|
|
|
|
|
class Value;
|
|
|
|
|
class ObjectValue;
|
|
|
|
|
class FunctionValue;
|
2010-01-26 14:53:11 +01:00
|
|
|
|
2010-02-15 11:52:39 +01:00
|
|
|
class QMLJS_EXPORT Evaluate: protected AST::Visitor
|
2010-01-18 16:15:23 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2011-09-12 11:48:33 +02:00
|
|
|
Evaluate(const ScopeChain *scopeChain, ReferenceContext *referenceContext = 0);
|
2014-02-05 13:07:46 +01:00
|
|
|
~Evaluate() QTC_OVERRIDE;
|
2010-01-18 16:15:23 +01:00
|
|
|
|
2011-08-08 10:54:48 +02:00
|
|
|
// same as value()
|
2011-08-08 12:47:49 +02:00
|
|
|
const Value *operator()(AST::Node *ast);
|
2011-05-04 11:12:45 +02:00
|
|
|
|
2011-08-08 10:54:48 +02:00
|
|
|
// evaluate ast in the given context, resolving references
|
2011-08-08 12:47:49 +02:00
|
|
|
const Value *value(AST::Node *ast);
|
2011-08-08 10:54:48 +02:00
|
|
|
|
2011-05-04 11:12:45 +02:00
|
|
|
// evaluate, but stop when encountering a Reference
|
2011-08-08 12:47:49 +02:00
|
|
|
const Value *reference(AST::Node *ast);
|
2010-01-18 16:15:23 +01:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void accept(AST::Node *node);
|
|
|
|
|
|
2011-08-08 12:47:49 +02:00
|
|
|
const Value *switchResult(const Value *result);
|
2010-01-26 14:53:11 +01:00
|
|
|
|
2010-01-18 16:15:23 +01:00
|
|
|
// Ui
|
2014-02-05 13:07:46 +01:00
|
|
|
bool visit(AST::UiProgram *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiHeaderItemList *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiQualifiedPragmaId *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiPragma *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiImport *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiPublicMember *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiSourceElement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiObjectDefinition *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiObjectInitializer *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiObjectBinding *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiScriptBinding *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiArrayBinding *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiObjectMemberList *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiArrayMemberList *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UiQualifiedId *ast) QTC_OVERRIDE;
|
2010-01-18 16:15:23 +01:00
|
|
|
|
|
|
|
|
// QmlJS
|
2014-02-05 13:07:46 +01:00
|
|
|
bool visit(AST::ThisExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::IdentifierExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::NullExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::TrueLiteral *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::FalseLiteral *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::StringLiteral *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::NumericLiteral *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::RegExpLiteral *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ArrayLiteral *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ObjectLiteral *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ElementList *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::Elision *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::PropertyAssignmentList *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::PropertyGetterSetter *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::PropertyNameAndValue *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::NestedExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::IdentifierPropertyName *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::StringLiteralPropertyName *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::NumericLiteralPropertyName *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ArrayMemberExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::FieldMemberExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::NewMemberExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::NewExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::CallExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ArgumentList *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::PostIncrementExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::PostDecrementExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::DeleteExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::VoidExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::TypeOfExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::PreIncrementExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::PreDecrementExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UnaryPlusExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::UnaryMinusExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::TildeExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::NotExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::BinaryExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ConditionalExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::Expression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::Block *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::StatementList *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::VariableStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::VariableDeclarationList *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::VariableDeclaration *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::EmptyStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ExpressionStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::IfStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::DoWhileStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::WhileStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ForStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::LocalForStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ForEachStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::LocalForEachStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ContinueStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::BreakStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ReturnStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::WithStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::SwitchStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::CaseBlock *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::CaseClauses *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::CaseClause *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::DefaultClause *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::LabelledStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::ThrowStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::TryStatement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::Catch *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::Finally *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::FunctionDeclaration *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::FunctionExpression *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::FormalParameterList *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::FunctionBody *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::Program *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::SourceElements *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::FunctionSourceElement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::StatementSourceElement *ast) QTC_OVERRIDE;
|
|
|
|
|
bool visit(AST::DebuggerStatement *ast) QTC_OVERRIDE;
|
2010-01-18 16:15:23 +01:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QmlJS::Document::Ptr _doc;
|
2011-08-08 12:47:49 +02:00
|
|
|
ValueOwner *_valueOwner;
|
|
|
|
|
ContextPtr _context;
|
2011-09-12 11:48:33 +02:00
|
|
|
ReferenceContext *_referenceContext;
|
2011-08-08 12:47:49 +02:00
|
|
|
const ScopeChain *_scopeChain;
|
|
|
|
|
const Value *_result;
|
2010-01-18 16:15:23 +01:00
|
|
|
};
|
|
|
|
|
|
2011-02-04 09:52:39 +01:00
|
|
|
} // namespace Qml
|
2010-01-18 16:15:23 +01:00
|
|
|
|
2013-03-12 12:09:22 +01:00
|
|
|
#endif // QMLJSEVALUATE_H
|