| 1 | /****************************************************************************
|
|---|
| 2 | **
|
|---|
| 3 | ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|---|
| 4 | ** All rights reserved.
|
|---|
| 5 | ** Contact: Nokia Corporation ([email protected])
|
|---|
| 6 | **
|
|---|
| 7 | ** This file is part of the QtScript module of the Qt Toolkit.
|
|---|
| 8 | **
|
|---|
| 9 | ** $QT_BEGIN_LICENSE:LGPL-ONLY$
|
|---|
| 10 | ** GNU Lesser General Public License Usage
|
|---|
| 11 | ** This file may be used under the terms of the GNU Lesser
|
|---|
| 12 | ** General Public License version 2.1 as published by the Free Software
|
|---|
| 13 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
|---|
| 14 | ** packaging of this file. Please review the following information to
|
|---|
| 15 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
|---|
| 16 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|---|
| 17 | **
|
|---|
| 18 | ** If you have questions regarding the use of this file, please contact
|
|---|
| 19 | ** Nokia at [email protected].
|
|---|
| 20 | ** $QT_END_LICENSE$
|
|---|
| 21 | **
|
|---|
| 22 | ****************************************************************************/
|
|---|
| 23 |
|
|---|
| 24 | #ifndef QSCRIPTAST_FWD_P_H
|
|---|
| 25 | #define QSCRIPTAST_FWD_P_H
|
|---|
| 26 |
|
|---|
| 27 | #include <QtCore/qglobal.h>
|
|---|
| 28 |
|
|---|
| 29 | //
|
|---|
| 30 | // W A R N I N G
|
|---|
| 31 | // -------------
|
|---|
| 32 | //
|
|---|
| 33 | // This file is not part of the Qt API. It exists purely as an
|
|---|
| 34 | // implementation detail. This header file may change from version to
|
|---|
| 35 | // version without notice, or even be removed.
|
|---|
| 36 | //
|
|---|
| 37 | // We mean it.
|
|---|
| 38 | //
|
|---|
| 39 |
|
|---|
| 40 | QT_BEGIN_NAMESPACE
|
|---|
| 41 |
|
|---|
| 42 | namespace QScript { namespace AST {
|
|---|
| 43 |
|
|---|
| 44 | class Visitor;
|
|---|
| 45 | class Node;
|
|---|
| 46 | class ExpressionNode;
|
|---|
| 47 | class Statement;
|
|---|
| 48 | class ThisExpression;
|
|---|
| 49 | class IdentifierExpression;
|
|---|
| 50 | class NullExpression;
|
|---|
| 51 | class TrueLiteral;
|
|---|
| 52 | class FalseLiteral;
|
|---|
| 53 | class NumericLiteral;
|
|---|
| 54 | class StringLiteral;
|
|---|
| 55 | class RegExpLiteral;
|
|---|
| 56 | class ArrayLiteral;
|
|---|
| 57 | class ObjectLiteral;
|
|---|
| 58 | class ElementList;
|
|---|
| 59 | class Elision;
|
|---|
| 60 | class PropertyNameAndValueList;
|
|---|
| 61 | class PropertyName;
|
|---|
| 62 | class IdentifierPropertyName;
|
|---|
| 63 | class StringLiteralPropertyName;
|
|---|
| 64 | class NumericLiteralPropertyName;
|
|---|
| 65 | class ArrayMemberExpression;
|
|---|
| 66 | class FieldMemberExpression;
|
|---|
| 67 | class NewMemberExpression;
|
|---|
| 68 | class NewExpression;
|
|---|
| 69 | class CallExpression;
|
|---|
| 70 | class ArgumentList;
|
|---|
| 71 | class PostIncrementExpression;
|
|---|
| 72 | class PostDecrementExpression;
|
|---|
| 73 | class DeleteExpression;
|
|---|
| 74 | class VoidExpression;
|
|---|
| 75 | class TypeOfExpression;
|
|---|
| 76 | class PreIncrementExpression;
|
|---|
| 77 | class PreDecrementExpression;
|
|---|
| 78 | class UnaryPlusExpression;
|
|---|
| 79 | class UnaryMinusExpression;
|
|---|
| 80 | class TildeExpression;
|
|---|
| 81 | class NotExpression;
|
|---|
| 82 | class BinaryExpression;
|
|---|
| 83 | class ConditionalExpression;
|
|---|
| 84 | class Expression; // ### rename
|
|---|
| 85 | class Block;
|
|---|
| 86 | class StatementList;
|
|---|
| 87 | class VariableStatement;
|
|---|
| 88 | class VariableDeclarationList;
|
|---|
| 89 | class VariableDeclaration;
|
|---|
| 90 | class EmptyStatement;
|
|---|
| 91 | class ExpressionStatement;
|
|---|
| 92 | class IfStatement;
|
|---|
| 93 | class DoWhileStatement;
|
|---|
| 94 | class WhileStatement;
|
|---|
| 95 | class ForStatement;
|
|---|
| 96 | class LocalForStatement;
|
|---|
| 97 | class ForEachStatement;
|
|---|
| 98 | class LocalForEachStatement;
|
|---|
| 99 | class ContinueStatement;
|
|---|
| 100 | class BreakStatement;
|
|---|
| 101 | class ReturnStatement;
|
|---|
| 102 | class WithStatement;
|
|---|
| 103 | class SwitchStatement;
|
|---|
| 104 | class CaseBlock;
|
|---|
| 105 | class CaseClauses;
|
|---|
| 106 | class CaseClause;
|
|---|
| 107 | class DefaultClause;
|
|---|
| 108 | class LabelledStatement;
|
|---|
| 109 | class ThrowStatement;
|
|---|
| 110 | class TryStatement;
|
|---|
| 111 | class Catch;
|
|---|
| 112 | class Finally;
|
|---|
| 113 | class FunctionDeclaration;
|
|---|
| 114 | class FunctionExpression;
|
|---|
| 115 | class FormalParameterList;
|
|---|
| 116 | class FunctionBody;
|
|---|
| 117 | class Program;
|
|---|
| 118 | class SourceElements;
|
|---|
| 119 | class SourceElement;
|
|---|
| 120 | class FunctionSourceElement;
|
|---|
| 121 | class StatementSourceElement;
|
|---|
| 122 | class DebuggerStatement;
|
|---|
| 123 |
|
|---|
| 124 | } } // namespace AST
|
|---|
| 125 |
|
|---|
| 126 | QT_END_NAMESPACE
|
|---|
| 127 |
|
|---|
| 128 | #endif
|
|---|