| 3511 | } |
| 3512 | |
| 3513 | void Value::initBasic(ValueType vtype, bool allocated) { |
| 3514 | type_ = vtype; |
| 3515 | allocated_ = allocated; |
| 3516 | comments_ = 0; |
| 3517 | start_ = 0; |
| 3518 | limit_ = 0; |
| 3519 | } |
| 3520 | |
| 3521 | // Access an object value by name, create a null member if it does not exist. |
| 3522 | // @pre Type of '*this' is object or null. |
nothing calls this directly
no outgoing calls
no test coverage detected