summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Enum.cpp
blob: cece740ed3981677006739dc51e9abf96a4d8677 (plain)
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
// file      : CCF/IDL2/SemanticAction/Impl/Enum.cpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

#include "CCF/IDL2/SemanticAction/Impl/Enum.hpp"

#include <iostream>

using std::cerr;
using std::endl;

namespace CCF
{
  namespace IDL2
  {
    namespace SemanticAction
    {
      namespace Impl
      {
        using namespace SemanticGraph;

        Enum::
        Enum (Context& c)
            : Base (c)
        {
        }

        void Enum::
        begin (SimpleIdentifierPtr const& id)
        {
          if (ctx.trace ()) cerr << "enum " << id << endl;

          type_ = 0;

          SimpleName name (id->lexeme ());

          type_ = &ctx.tu ().new_node<SemanticGraph::Enum> (
            ctx.file (), id->line ());

          ctx.tu ().new_edge<Defines> (ctx.scope (), *type_, name);
        }

        void Enum::
        enumerator (SimpleIdentifierPtr const& id)
        {
          if (ctx.trace ()) cerr << "enumerator " << id << endl;

          //@@ Need to check for redeclaration of the name.
          //

          SimpleName name (id->lexeme ());

          if (type_ != 0)
          {
            Enumerator& e (
              ctx.tu ().new_node<Enumerator> (
                ctx.file (), id->line ()));

            ctx.tu ().new_edge<Belongs> (e, *type_);
            ctx.tu ().new_edge<Defines> (ctx.scope (), e, name);
          }
        }

        void Enum::
        end ()
        {
          if (ctx.trace ()) cerr << "end" << endl;
        }
      }
    }
  }
}