| 117 | ProbabilityTable<unsigned int, ProbName> *Statement::stmtTable_ = NULL; |
| 118 | |
| 119 | void |
| 120 | Statement::InitProbabilityTable() |
| 121 | { |
| 122 | if (Statement::stmtTable_) |
| 123 | return; |
| 124 | |
| 125 | Statement::stmtTable_ = new ProbabilityTable<unsigned int, ProbName>(); |
| 126 | Statement::stmtTable_->initialize(pStatementProb); |
| 127 | } |
| 128 | |
| 129 | eStatementType |
| 130 | Statement::number_to_type(unsigned int value) |
nothing calls this directly
no test coverage detected