| 315 | } |
| 316 | |
| 317 | const Variable* |
| 318 | Variable::get_top_container(void) const |
| 319 | { |
| 320 | const Variable* v = this; |
| 321 | for (; v && v->field_var_of; v = v->field_var_of) { |
| 322 | /* Empty */ |
| 323 | } |
| 324 | return v; |
| 325 | } |
| 326 | |
| 327 | int |
| 328 | Variable::get_field_id(void) const |
nothing calls this directly
no outgoing calls
no test coverage detected