| 142 | } |
| 143 | |
| 144 | void SyntaxTree::SetPrefix(const char *prefix) { |
| 145 | strncpy(prefix_, prefix, sizeof(prefix_) - 1); |
| 146 | ToUpper(prefix_); |
| 147 | } |
| 148 | |
| 149 | const char *SyntaxTree::GetPrefix() const { |
| 150 | return prefix_; |
nothing calls this directly
no outgoing calls
no test coverage detected