OSDN Git Service

It's 2011 now.
[qt-creator-jp/qt-creator-jp.git] / src / shared / cplusplus / ASTVisitor.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33 // Copyright (c) 2008 Roberto Raggi <roberto.raggi@gmail.com>
34 //
35 // Permission is hereby granted, free of charge, to any person obtaining a copy
36 // of this software and associated documentation files (the "Software"), to deal
37 // in the Software without restriction, including without limitation the rights
38 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
39 // copies of the Software, and to permit persons to whom the Software is
40 // furnished to do so, subject to the following conditions:
41 //
42 // The above copyright notice and this permission notice shall be included in
43 // all copies or substantial portions of the Software.
44 //
45 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
46 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
47 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
48 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
49 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
50 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
51 // THE SOFTWARE.
52
53 #include "ASTVisitor.h"
54 #include "AST.h"
55 #include "TranslationUnit.h"
56 #include "Control.h"
57
58 using namespace CPlusPlus;
59
60 ASTVisitor::ASTVisitor(TranslationUnit *translationUnit)
61     : _translationUnit(translationUnit)
62 { }
63
64 ASTVisitor::~ASTVisitor()
65 { }
66
67 void ASTVisitor::accept(AST *ast)
68 { AST::accept(ast, this); }
69
70 Control *ASTVisitor::control() const
71 {
72     if (_translationUnit)
73         return _translationUnit->control();
74
75     return 0;
76 }
77
78 TranslationUnit *ASTVisitor::translationUnit() const
79 { return _translationUnit; }
80
81 void ASTVisitor::setTranslationUnit(TranslationUnit *translationUnit)
82 { _translationUnit = translationUnit; }
83
84 unsigned ASTVisitor::tokenCount() const
85 { return translationUnit()->tokenCount(); }
86
87 const Token &ASTVisitor::tokenAt(unsigned index) const
88 { return translationUnit()->tokenAt(index); }
89
90 int ASTVisitor::tokenKind(unsigned index) const
91 { return translationUnit()->tokenKind(index); }
92
93 const char *ASTVisitor::spell(unsigned index) const
94 { return translationUnit()->spell(index); }
95
96 const Identifier *ASTVisitor::identifier(unsigned index) const
97 { return translationUnit()->identifier(index); }
98
99 const Literal *ASTVisitor::literal(unsigned index) const
100 { return translationUnit()->literal(index); }
101
102 const NumericLiteral *ASTVisitor::numericLiteral(unsigned index) const
103 { return translationUnit()->numericLiteral(index); }
104
105 const StringLiteral *ASTVisitor::stringLiteral(unsigned index) const
106 { return translationUnit()->stringLiteral(index); }
107
108 void ASTVisitor::getPosition(unsigned offset,
109                              unsigned *line,
110                              unsigned *column,
111                              const StringLiteral **fileName) const
112 { translationUnit()->getPosition(offset, line, column, fileName); }
113
114 void ASTVisitor::getTokenPosition(unsigned index,
115                                   unsigned *line,
116                                   unsigned *column,
117                                   const StringLiteral **fileName) const
118 { translationUnit()->getTokenPosition(index, line, column, fileName); }
119
120 void ASTVisitor::getTokenStartPosition(unsigned index, unsigned *line, unsigned *column) const
121 { getPosition(tokenAt(index).begin(), line, column); }
122
123 void ASTVisitor::getTokenEndPosition(unsigned index, unsigned *line, unsigned *column) const
124 { getPosition(tokenAt(index).end(), line, column); }
125
126