summaryrefslogtreecommitdiff
path: root/cli/traversal/class.cxx
blob: 41237667c8ee4857a74ced55c83fbbe1f099d10e (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
// file      : cli/traversal/class.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#include <cli/traversal/class.hxx>

namespace traversal
{
  // inherits
  //
  void inherits::
  traverse (type& i)
  {
    dispatch (i.base ());
  }

  // class_
  //
  void class_::
  traverse (type& c)
  {
    pre (c);
    inherits (c);
    names (c);
    post (c);
  }

  void class_::
  inherits (type& c)
  {
    inherits (c, *this);
  }

  void class_::
  inherits (type& c, edge_dispatcher& d)
  {
    iterate_and_dispatch (c.inherits_begin (), c.inherits_end (), d);
  }

  void class_::
  pre (type&)
  {
  }

  void class_::
  post (type&)
  {
  }
}