You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, all occurrences of _ are simply replaced with : when a message is sent through interop to a Smalltalk object. This, however, implies it's always necessary that an identifier ends with _ if arguments are supplied (example: SmalltalkArrayClass.with_(42)). We should make message resolution a bit smarter because it's clear that the Smalltalk selector needs to end with : with arguments are supplied. This way, it'd be possible to do SmalltalkArrayClass.with(42), which will effectively be the same as SmalltalkArrayClass.with_(42).
The text was updated successfully, but these errors were encountered:
Currently, all occurrences of
_
are simply replaced with:
when a message is sent through interop to a Smalltalk object. This, however, implies it's always necessary that an identifier ends with_
if arguments are supplied (example:SmalltalkArrayClass.with_(42)
). We should make message resolution a bit smarter because it's clear that the Smalltalk selector needs to end with:
with arguments are supplied. This way, it'd be possible to doSmalltalkArrayClass.with(42)
, which will effectively be the same asSmalltalkArrayClass.with_(42)
.The text was updated successfully, but these errors were encountered: