Steven Moreland | f1a35f7 | 2016-08-17 08:41:49 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 19 | namespace android { |
| 20 | |
| 21 | Note::Note(const std::string &name) |
| 22 | : Declaration(name) |
| 23 | {} |
| 24 | |
Yifan Hong | 3449bba | 2016-09-30 10:19:11 -0700 | [diff] [blame] | 25 | Note::Note(Declaration *decl) |
| 26 | : Declaration(""), |
| 27 | mDecl(decl) |
| 28 | {} |
| 29 | |
| 30 | Note::~Note() { |
| 31 | if(mDecl) { |
| 32 | delete mDecl; |
| 33 | } |
| 34 | } |
Steven Moreland | f1a35f7 | 2016-08-17 08:41:49 -0700 | [diff] [blame] | 35 | |
| 36 | void Note::generateSource(Formatter &out) const { |
Yifan Hong | 2009699 | 2016-09-28 17:16:04 -0700 | [diff] [blame] | 37 | out.setLinePrefix("//"); |
| 38 | out << "NOTE:\n"; |
Steven Moreland | f1a35f7 | 2016-08-17 08:41:49 -0700 | [diff] [blame] | 39 | |
| 40 | out.indent(); |
Yifan Hong | 3449bba | 2016-09-30 10:19:11 -0700 | [diff] [blame] | 41 | if(mDecl) { |
| 42 | mDecl->generateSource(out); |
| 43 | } else { |
| 44 | out << getName(); |
| 45 | } |
Steven Moreland | f1a35f7 | 2016-08-17 08:41:49 -0700 | [diff] [blame] | 46 | out.unindent(); |
| 47 | |
Yifan Hong | 2009699 | 2016-09-28 17:16:04 -0700 | [diff] [blame] | 48 | out.unsetLinePrefix(); |
| 49 | out << "\n"; |
Steven Moreland | f1a35f7 | 2016-08-17 08:41:49 -0700 | [diff] [blame] | 50 | } |
| 51 | |
Yifan Hong | 3449bba | 2016-09-30 10:19:11 -0700 | [diff] [blame] | 52 | void Note::processContents(AST &ast) { |
| 53 | if (mDecl) { |
| 54 | mDecl->processContents(ast); |
| 55 | } |
Steven Moreland | f1a35f7 | 2016-08-17 08:41:49 -0700 | [diff] [blame] | 56 | } |
| 57 | |
Yifan Hong | 3449bba | 2016-09-30 10:19:11 -0700 | [diff] [blame] | 58 | } //namespace android |