2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-01-18 13:13:34 +01:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2010-01-18 13:13:34 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-01-18 13:13:34 +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
|
2016-01-15 14:58:39 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2011-05-12 13:25:35 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-01-18 13:13:34 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// W A R N I N G
|
|
|
|
|
// -------------
|
|
|
|
|
//
|
|
|
|
|
// This file is not part of the Qt API. It exists purely as an
|
|
|
|
|
// implementation detail. This header file may change from version to
|
|
|
|
|
// version without notice, or even be removed.
|
|
|
|
|
//
|
|
|
|
|
// We mean it.
|
|
|
|
|
//
|
|
|
|
|
|
2013-01-22 11:15:23 +01:00
|
|
|
//
|
|
|
|
|
// W A R N I N G
|
|
|
|
|
// -------------
|
2010-01-18 13:13:34 +01:00
|
|
|
//
|
|
|
|
|
// This file is automatically generated from qmljs.g.
|
2013-01-22 11:15:23 +01:00
|
|
|
// Changes should be made to that file, not here. Any change to this file will
|
|
|
|
|
// be lost!
|
|
|
|
|
//
|
|
|
|
|
// To regenerate this file, run:
|
|
|
|
|
// qlalr --no-debug --no-lines --qt qmljs.g
|
2010-01-18 13:13:34 +01:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef QMLJSPARSER_P_H
|
|
|
|
|
#define QMLJSPARSER_P_H
|
|
|
|
|
|
|
|
|
|
#include "qmljsglobal_p.h"
|
|
|
|
|
#include "qmljsgrammar_p.h"
|
|
|
|
|
#include "qmljsast_p.h"
|
|
|
|
|
#include "qmljsengine_p.h"
|
|
|
|
|
|
2013-11-06 14:17:23 +01:00
|
|
|
#include <QtCore/qlist.h>
|
|
|
|
|
#include <QtCore/qstring.h>
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
|
QT_QML_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
|
|
namespace QmlJS {
|
|
|
|
|
|
|
|
|
|
class Engine;
|
|
|
|
|
|
|
|
|
|
class QML_PARSER_EXPORT Parser: protected QmlJSGrammar
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
union Value {
|
|
|
|
|
int ival;
|
|
|
|
|
double dval;
|
|
|
|
|
AST::ArgumentList *ArgumentList;
|
|
|
|
|
AST::CaseBlock *CaseBlock;
|
|
|
|
|
AST::CaseClause *CaseClause;
|
|
|
|
|
AST::CaseClauses *CaseClauses;
|
|
|
|
|
AST::Catch *Catch;
|
|
|
|
|
AST::DefaultClause *DefaultClause;
|
|
|
|
|
AST::ElementList *ElementList;
|
|
|
|
|
AST::Elision *Elision;
|
|
|
|
|
AST::ExpressionNode *Expression;
|
|
|
|
|
AST::Finally *Finally;
|
|
|
|
|
AST::FormalParameterList *FormalParameterList;
|
|
|
|
|
AST::FunctionBody *FunctionBody;
|
|
|
|
|
AST::FunctionDeclaration *FunctionDeclaration;
|
|
|
|
|
AST::Node *Node;
|
|
|
|
|
AST::PropertyName *PropertyName;
|
2013-11-06 14:17:23 +01:00
|
|
|
AST::PropertyAssignment *PropertyAssignment;
|
|
|
|
|
AST::PropertyAssignmentList *PropertyAssignmentList;
|
2010-01-18 13:13:34 +01:00
|
|
|
AST::SourceElement *SourceElement;
|
|
|
|
|
AST::SourceElements *SourceElements;
|
|
|
|
|
AST::Statement *Statement;
|
|
|
|
|
AST::StatementList *StatementList;
|
|
|
|
|
AST::Block *Block;
|
|
|
|
|
AST::VariableDeclaration *VariableDeclaration;
|
|
|
|
|
AST::VariableDeclarationList *VariableDeclarationList;
|
|
|
|
|
|
|
|
|
|
AST::UiProgram *UiProgram;
|
2013-11-06 14:17:23 +01:00
|
|
|
AST::UiHeaderItemList *UiHeaderItemList;
|
|
|
|
|
AST::UiPragma *UiPragma;
|
2010-01-18 13:13:34 +01:00
|
|
|
AST::UiImport *UiImport;
|
|
|
|
|
AST::UiParameterList *UiParameterList;
|
|
|
|
|
AST::UiPublicMember *UiPublicMember;
|
|
|
|
|
AST::UiObjectDefinition *UiObjectDefinition;
|
|
|
|
|
AST::UiObjectInitializer *UiObjectInitializer;
|
|
|
|
|
AST::UiObjectBinding *UiObjectBinding;
|
|
|
|
|
AST::UiScriptBinding *UiScriptBinding;
|
|
|
|
|
AST::UiArrayBinding *UiArrayBinding;
|
|
|
|
|
AST::UiObjectMember *UiObjectMember;
|
|
|
|
|
AST::UiObjectMemberList *UiObjectMemberList;
|
|
|
|
|
AST::UiArrayMemberList *UiArrayMemberList;
|
|
|
|
|
AST::UiQualifiedId *UiQualifiedId;
|
2013-11-06 14:17:23 +01:00
|
|
|
AST::UiQualifiedPragmaId *UiQualifiedPragmaId;
|
2010-01-18 13:13:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
Parser(Engine *engine);
|
|
|
|
|
~Parser();
|
|
|
|
|
|
|
|
|
|
// parse a UI program
|
|
|
|
|
bool parse() { return parse(T_FEED_UI_PROGRAM); }
|
|
|
|
|
bool parseStatement() { return parse(T_FEED_JS_STATEMENT); }
|
|
|
|
|
bool parseExpression() { return parse(T_FEED_JS_EXPRESSION); }
|
|
|
|
|
bool parseSourceElement() { return parse(T_FEED_JS_SOURCE_ELEMENT); }
|
|
|
|
|
bool parseUiObjectMember() { return parse(T_FEED_UI_OBJECT_MEMBER); }
|
|
|
|
|
bool parseProgram() { return parse(T_FEED_JS_PROGRAM); }
|
|
|
|
|
|
|
|
|
|
AST::UiProgram *ast() const
|
|
|
|
|
{ return AST::cast<AST::UiProgram *>(program); }
|
|
|
|
|
|
|
|
|
|
AST::Statement *statement() const
|
|
|
|
|
{
|
|
|
|
|
if (! program)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return program->statementCast();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AST::ExpressionNode *expression() const
|
|
|
|
|
{
|
|
|
|
|
if (! program)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return program->expressionCast();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AST::UiObjectMember *uiObjectMember() const
|
|
|
|
|
{
|
|
|
|
|
if (! program)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return program->uiObjectMemberCast();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AST::Node *rootNode() const
|
|
|
|
|
{ return program; }
|
|
|
|
|
|
|
|
|
|
QList<DiagnosticMessage> diagnosticMessages() const
|
|
|
|
|
{ return diagnostic_messages; }
|
|
|
|
|
|
|
|
|
|
inline DiagnosticMessage diagnosticMessage() const
|
|
|
|
|
{
|
|
|
|
|
foreach (const DiagnosticMessage &d, diagnostic_messages) {
|
2013-10-16 14:59:28 +02:00
|
|
|
if (d.kind != Severity::Warning)
|
2010-01-18 13:13:34 +01:00
|
|
|
return d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return DiagnosticMessage();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline QString errorMessage() const
|
|
|
|
|
{ return diagnosticMessage().message; }
|
|
|
|
|
|
|
|
|
|
inline int errorLineNumber() const
|
|
|
|
|
{ return diagnosticMessage().loc.startLine; }
|
|
|
|
|
|
|
|
|
|
inline int errorColumnNumber() const
|
|
|
|
|
{ return diagnosticMessage().loc.startColumn; }
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
bool parse(int startToken);
|
|
|
|
|
|
|
|
|
|
void reallocateStack();
|
|
|
|
|
|
|
|
|
|
inline Value &sym(int index)
|
|
|
|
|
{ return sym_stack [tos + index - 1]; }
|
|
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
inline QStringRef &stringRef(int index)
|
|
|
|
|
{ return string_stack [tos + index - 1]; }
|
|
|
|
|
|
2010-01-18 13:13:34 +01:00
|
|
|
inline AST::SourceLocation &loc(int index)
|
|
|
|
|
{ return location_stack [tos + index - 1]; }
|
|
|
|
|
|
|
|
|
|
AST::UiQualifiedId *reparseAsQualifiedId(AST::ExpressionNode *expr);
|
2013-11-06 14:17:23 +01:00
|
|
|
AST::UiQualifiedPragmaId *reparseAsQualifiedPragmaId(AST::ExpressionNode *expr);
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
Engine *driver;
|
2011-09-13 08:42:52 +02:00
|
|
|
MemoryPool *pool;
|
2010-01-18 13:13:34 +01:00
|
|
|
int tos;
|
|
|
|
|
int stack_size;
|
|
|
|
|
Value *sym_stack;
|
|
|
|
|
int *state_stack;
|
|
|
|
|
AST::SourceLocation *location_stack;
|
2011-09-13 08:42:52 +02:00
|
|
|
QStringRef *string_stack;
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
|
AST::Node *program;
|
|
|
|
|
|
|
|
|
|
// error recovery
|
|
|
|
|
enum { TOKEN_BUFFER_SIZE = 3 };
|
|
|
|
|
|
|
|
|
|
struct SavedToken {
|
|
|
|
|
int token;
|
|
|
|
|
double dval;
|
|
|
|
|
AST::SourceLocation loc;
|
2011-09-13 08:42:52 +02:00
|
|
|
QStringRef spell;
|
2010-01-18 13:13:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
double yylval;
|
2011-09-13 08:42:52 +02:00
|
|
|
QStringRef yytokenspell;
|
2010-01-18 13:13:34 +01:00
|
|
|
AST::SourceLocation yylloc;
|
|
|
|
|
AST::SourceLocation yyprevlloc;
|
|
|
|
|
|
|
|
|
|
SavedToken token_buffer[TOKEN_BUFFER_SIZE];
|
|
|
|
|
SavedToken *first_token;
|
|
|
|
|
SavedToken *last_token;
|
|
|
|
|
|
|
|
|
|
QList<DiagnosticMessage> diagnostic_messages;
|
|
|
|
|
};
|
|
|
|
|
|
2011-02-21 12:46:02 +01:00
|
|
|
} // end of namespace QmlJS
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-06 14:17:23 +01:00
|
|
|
#define J_SCRIPT_REGEXPLITERAL_RULE1 87
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2013-11-06 14:17:23 +01:00
|
|
|
#define J_SCRIPT_REGEXPLITERAL_RULE2 88
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
|
QT_QML_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // QMLJSPARSER_P_H
|