blob: 292bb79efe8279255609dcdef5bc9ae73a3eda03 [file] [log] [blame]
Steven Morelandf1a35f72016-08-17 08:41:49 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "Note.h"
18
19namespace android {
20
21Note::Note(const std::string &name)
22 : Declaration(name)
23 {}
24
Yifan Hong3449bba2016-09-30 10:19:11 -070025Note::Note(Declaration *decl)
26 : Declaration(""),
27 mDecl(decl)
28 {}
29
30Note::~Note() {
31 if(mDecl) {
32 delete mDecl;
33 }
34}
Steven Morelandf1a35f72016-08-17 08:41:49 -070035
36void Note::generateSource(Formatter &out) const {
Yifan Hong20096992016-09-28 17:16:04 -070037 out.setLinePrefix("//");
38 out << "NOTE:\n";
Steven Morelandf1a35f72016-08-17 08:41:49 -070039
40 out.indent();
Yifan Hong3449bba2016-09-30 10:19:11 -070041 if(mDecl) {
42 mDecl->generateSource(out);
43 } else {
44 out << getName();
45 }
Steven Morelandf1a35f72016-08-17 08:41:49 -070046 out.unindent();
47
Yifan Hong20096992016-09-28 17:16:04 -070048 out.unsetLinePrefix();
49 out << "\n";
Steven Morelandf1a35f72016-08-17 08:41:49 -070050}
51
Yifan Hong3449bba2016-09-30 10:19:11 -070052void Note::processContents(AST &ast) {
53 if (mDecl) {
54 mDecl->processContents(ast);
55 }
Steven Morelandf1a35f72016-08-17 08:41:49 -070056}
57
Yifan Hong3449bba2016-09-30 10:19:11 -070058} //namespace android