diff options
Diffstat (limited to 'staptree.cxx')
-rw-r--r-- | staptree.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/staptree.cxx b/staptree.cxx index 7f672c38..b5a7ae49 100644 --- a/staptree.cxx +++ b/staptree.cxx @@ -67,6 +67,11 @@ symboldecl::~symboldecl () { } +probe_point::probe_point (std::vector<component*> const & comps, + const token * t): + components(comps), tok(t) +{ +} probe_point::probe_point (): tok (0) @@ -86,6 +91,12 @@ probe_point::component::component (): } +probe_point::component::component (std::string const & f, literal * a): + functor(f), arg(a) +{ +} + + vardecl::vardecl (): arity (-1) { |