blob: 093c37e35747529071a447c43610cf1483f3c048 [file] [log] [blame]
Ted Kremeneka758d092007-08-24 20:21:10 +00001//===--- ExprCXX.cpp - (C++) Expression AST Node Implementation -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Ted Kremenek and is distributed under
6// the University of Illinois Open Source 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"
15using namespace clang;
16
17//===----------------------------------------------------------------------===//
18// Child Iterators for iterating over subexpressions/substatements
19//===----------------------------------------------------------------------===//
20
21
22// CXXCastExpr
23Stmt::child_iterator CXXCastExpr::child_begin() {
24 return reinterpret_cast<Stmt**>(&Op);
25}
26
27Stmt::child_iterator CXXCastExpr::child_end() {
28 return child_begin()+1;
29}
30
31// CXXBoolLiteralExpr
32Stmt::child_iterator CXXBoolLiteralExpr::child_begin() { return NULL; }
33Stmt::child_iterator CXXBoolLiteralExpr::child_end() { return NULL; }