1#ifndef INCLUDE_INJA_STATISTICS_HPP_
2#define INCLUDE_INJA_STATISTICS_HPP_
14 for (
auto& n : node.nodes) {
24 variable_counter += 1;
28 for (
auto& n : node.arguments) {
34 node.root->accept(*
this);
41 node.condition.accept(*
this);
42 node.body.accept(*
this);
46 node.condition.accept(*
this);
47 node.body.accept(*
this);
51 node.condition.accept(*
this);
52 node.true_statement.accept(*
this);
53 node.false_statement.accept(*
this);
61 node.block.accept(*
this);
67 unsigned int variable_counter;
A class for counting statistics on a Template.
Definition: statistics.hpp:12