summaryrefslogtreecommitdiff
path: root/cli/traversal/namespace.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-09-05 16:29:23 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-09-05 16:29:23 +0200
commit4974b4763bd60eb875f93a71dbe2fe82ecfed9fc (patch)
tree9353fb3fec3fa5f77f1faaf6da8185e3d006e7ba /cli/traversal/namespace.cxx
parente2299f6d95ba3264072d6ddc49f153ad73fd9d24 (diff)
Add semantic graph and traversal mechanism
The parser now builds the semantic graph.
Diffstat (limited to 'cli/traversal/namespace.cxx')
-rw-r--r--cli/traversal/namespace.cxx27
1 files changed, 27 insertions, 0 deletions
diff --git a/cli/traversal/namespace.cxx b/cli/traversal/namespace.cxx
new file mode 100644
index 0000000..47547db
--- /dev/null
+++ b/cli/traversal/namespace.cxx
@@ -0,0 +1,27 @@
+// file : cli/traversal/namespace.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#include <traversal/namespace.hxx>
+
+namespace traversal
+{
+ void namespace_::
+ traverse (type& n)
+ {
+ pre (n);
+ names (n);
+ post (n);
+ }
+
+ void namespace_::
+ pre (type&)
+ {
+ }
+
+ void namespace_::
+ post (type&)
+ {
+ }
+}