Hi, I’m using SC on a Raspberry Pi 5, compiled from source and thus version 3.14.0-dev. It’s all working fine, but I found out that addUniqueMethod doesn’t seem to work anymore. Is this a post 3.13.0 change or bug? Or is it because of Linux? As far as I’ve tested 3.13.0 installs on other linux machines didn’t have this problem. Example:
x = "hello";
x.addUniqueMethod( 'test', { "hi" } );
x.test; // -> ERROR: Message 'test' not understood.
Interesting, this could be because of a change I made to the way this is dealt with. There is a unit test file for unique methods if memory serves - could you run that and report back? It should pass fine, which would mean the tests aren’t sufficient.
I’m going to be busy for a few week so won’t be able to diagnose directly, but I’ll definitely have a look after if this does end up being something I caused.