message overriding bug
Jan-Paul Bultmann <[email protected]>
| Newsgroups | gmane.comp.lang.io |
|---|---|
| Message-ID | <[email protected]> |
Seems like inheritance and message lookup are broken in this case.
Cheers Jan
Io> A message := 5
==> 5
Io> A message
==> 5
Io> A m := method(message + 5)
==> method(
message + 5
)
Io> A m
Exception: nil does not respond to '+'
---------
nil + Command Line 1
A m Command Line 1
Io>