Fix ambigity on ObjInstance#toString() #94
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
when toString() is implemented in lyng, when called from kotlin toString(scope) usually calls builtin version, not the overridden one, but Lyng toString() calls ir properly, it causes bugs in expression like
"result: "+valueif value is an Lyng user class with implemented toString(); right now"result: "+value.toString()only works, which is ugly.