Qt 4.8
qscriptastfwd_p.h
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtScript module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL-ONLY$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser
11 ** General Public License version 2.1 as published by the Free Software
12 ** Foundation and appearing in the file LICENSE.LGPL included in the
13 ** packaging of this file. Please review the following information to
14 ** ensure the GNU Lesser General Public License version 2.1 requirements
15 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** If you have questions regarding the use of this file, please contact
18 ** us via http://www.qt-project.org/.
19 **
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 
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 
127 
128 #endif
#define QT_END_NAMESPACE
This macro expands to.
Definition: qglobal.h:90
#define QT_BEGIN_NAMESPACE
This macro expands to.
Definition: qglobal.h:89