• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
Note(const std::string & name)21 Note::Note(const std::string &name)
22     : Declaration(name)
23     {}
24 
Note(Declaration * decl)25 Note::Note(Declaration *decl)
26     : Declaration(""),
27       mDecl(decl)
28     {}
29 
~Note()30 Note::~Note() {
31     if(mDecl) {
32         delete mDecl;
33     }
34 }
35 
generateSource(Formatter & out) const36 void Note::generateSource(Formatter &out) const {
37     out.setLinePrefix("//");
38     out << "NOTE:\n";
39 
40     out.indent();
41     if(mDecl) {
42         mDecl->generateSource(out);
43     } else {
44         out << getName();
45     }
46     out.unindent();
47 
48     out.unsetLinePrefix();
49     out << "\n";
50 }
51 
processContents(AST & ast)52 void Note::processContents(AST &ast) {
53     if (mDecl) {
54         mDecl->processContents(ast);
55     }
56 }
57 
58 } //namespace android
59