This file is indexed.

/usr/include/gpt/Symbol.hpp is in libgportugol-dev 1.1-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/***************************************************************************
 *   Copyright (C) 2003-2006 by Thiago Silva                               *
 *   thiago.silva@kdemal.net                                               *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/
#ifndef SYMBOL_HPP
#define SYMBOL_HPP
#include <string>
#include <list>

using namespace std;

enum {
  TIPO_NULO,    //void
  TIPO_INTEIRO,
  TIPO_REAL,
  TIPO_CARACTERE,
  TIPO_LITERAL,
  TIPO_LOGICO,    
  TIPO_ALL   //para funcoes *mix* que fazem cast automatico de primitivos (ex: leia())
};

class SymbolType {
public:
  SymbolType();
  SymbolType(int type);

  void setPrimitiveType(int type);
  int primitiveType() const;
  
  void setPrimitive(bool);
  bool isPrimitive() const;

  void setDimensions(const list<int>&);
  list<int>& dimensions();

  string toString() const;
protected:
  bool _isPrimitive;
  int _primitiveType;  
  list<int>    _dimensions; //conjunto/matrizASTRef  
};

class ParameterSig {
public:
  ParameterSig()
  : variable_params(false)  {}

  void add(const string& name, int type) {
    SymbolType s(type);
    params.push_back(pair<string, SymbolType>(name,s));
  }

  void add(const string& name, SymbolType& t) {
/*    SymbolType s(p.first);
    s.setPrimitive(false);
    s.setDimensions(p.second);*/
    params.push_back(pair<string, SymbolType>(name,t));
  }

  int paramType(int idx) {
    if(isVariable()) {
      return TIPO_ALL;
    }
  
    int c = 0;
    for(list<pair<string,SymbolType> >::iterator it = params.begin(); it != params.end(); it++, c++) {
      if(c == idx) {
        return (*it).second.primitiveType();
      }
    }
    return TIPO_NULO; //throw exception?
  }

  list< pair<string,SymbolType> >& symbolList() { return params; }
  bool isVariable() { return variable_params;}
  void setVariable(bool val) { variable_params = val;}
protected:
  bool variable_params; //f(...)
  list<pair<string, SymbolType> > params;   //parĂ¢metros de funcao    <name, type>
};

class Symbol {
public:
  Symbol();
  
  Symbol(const string& scope_, const string& lexeme_, int line_, bool isfunction_);

  Symbol(const string& scope_, const string& lexeme_, int line_, bool isfunction_, int type_);

  Symbol(const string& scope_, const string& lexeme_, int line_, bool isfunction_, int type_,
    const list<int>& dimensions);

  bool isValid() const;
     
  static string typeToString(int type);


  //attrs

  
  int cd;
  string scope;
  string lexeme;
  int line;
  
  SymbolType type;  

  
  bool isFunction;
  bool isBuiltin;
  
  ParameterSig param;
  
};

#endif