blob: 9137de1bd3b03ecf89f00e029111ab5a42e73969 [file] [log] [blame]
Andreas Huberc9410c72016-07-28 12:18:40 -07001#include "ArrayType.h"
2
3#include "Formatter.h"
4
5namespace android {
6
7ArrayType::ArrayType(Type *elementType, const char *dimension)
8 : mElementType(elementType),
9 mDimension(dimension) {
10}
11
12void ArrayType::dump(Formatter &out) const {
13 mElementType->dump(out);
14 out << "[" << mDimension << "]";
15}
16
17} // namespace android
18