| 825 | } |
| 826 | |
| 827 | String::String(const Dynamic &inRHS) |
| 828 | { |
| 829 | if (inRHS.GetPtr()) |
| 830 | (*this)=const_cast<Dynamic &>(inRHS)->toString(); |
| 831 | else |
| 832 | { |
| 833 | __s = 0; |
| 834 | length = 0; |
| 835 | } |
| 836 | } |
| 837 | |
| 838 | void String::fromInt(int inIdx) |
| 839 | { |
nothing calls this directly
no test coverage detected