case UTF16STR: {
/* TODO: Handle encodings. */
SixModelObject meth = Ops.findmethod(o, "cstr", tc);
if (meth != null) {
Ops.invokeDirect(tc, meth, new CallSiteDescriptor(new byte[] { ARG_OBJ }, null), new Object[] { o });
CStrInstance cstr = (CStrInstance) Ops.decont(Ops.result_o(tc.resultFrame()), tc);
return cstr.cstr;
}
else {
return o.get_str(tc);
}