]> granicus.if.org Git - clang/blob - AST/ExprCXX.cpp
0646823af9ce7a1617398c127ab5ef632388ee46
[clang] / AST / ExprCXX.cpp
1 //===--- ExprCXX.cpp - (C++) Expression AST Node Implementation -----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the subclesses of Expr class declared in ExprCXX.h
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "clang/AST/ExprCXX.h"
15 using namespace clang;
16
17 //===----------------------------------------------------------------------===//
18 //  Child Iterators for iterating over subexpressions/substatements
19 //===----------------------------------------------------------------------===//
20
21
22 // CXXCastExpr
23 Stmt::child_iterator CXXCastExpr::child_begin() {
24   return reinterpret_cast<Stmt**>(&Op);
25 }
26
27 Stmt::child_iterator CXXCastExpr::child_end() {
28   return reinterpret_cast<Stmt**>(&Op)+1;
29 }
30
31 // CXXBoolLiteralExpr
32 Stmt::child_iterator CXXBoolLiteralExpr::child_begin() { 
33   return child_iterator();
34 }
35 Stmt::child_iterator CXXBoolLiteralExpr::child_end() {
36   return child_iterator();
37 }