| 113 | } |
| 114 | |
| 115 | inline StringValue StringValue::Substring(int start_pos) const { |
| 116 | SimpleString this_s = ToSimpleString(); |
| 117 | return StringValue(this_s.ptr + start_pos, this_s.len - start_pos); |
| 118 | } |
| 119 | |
| 120 | inline StringValue StringValue::Substring(int start_pos, int new_len) const { |
| 121 | SimpleString this_s = ToSimpleString(); |
nothing calls this directly
no test coverage detected