fix: output unknown invoke-custom as polymorphic call (#1760)
This commit is contained in:
+3
-3
@@ -53,12 +53,12 @@ public class EncodedValue extends PinnedAttribute {
|
||||
switch (type) {
|
||||
case ENCODED_NULL:
|
||||
return "null";
|
||||
case ENCODED_STRING:
|
||||
return (String) value;
|
||||
case ENCODED_ARRAY:
|
||||
return "[" + value + "]";
|
||||
case ENCODED_STRING:
|
||||
return "{STRING: \"" + value + "\"}";
|
||||
default:
|
||||
return "{" + type + ": " + value + '}';
|
||||
return "{" + type.toString().substring(8) + ": " + value + '}';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user