1 #ifndef INCLUDE_INJA_STATISTICS_HPP_
2 #define INCLUDE_INJA_STATISTICS_HPP_
13 for (
auto& n : node.nodes) {
23 variable_counter += 1;
27 for (
auto& n : node.arguments) {
33 node.root->accept(*
this);
40 node.condition.accept(*
this);
41 node.body.accept(*
this);
45 node.condition.accept(*
this);
46 node.body.accept(*
this);
50 node.condition.accept(*
this);
51 node.true_statement.accept(*
this);
52 node.false_statement.accept(*
this);
60 node.block.accept(*
this);
66 unsigned int variable_counter;
A class for counting statistics on a Template.
Definition: statistics.hpp:11