Loading NeoJSON into Smalltalk
Metacello new
baseline: 'NeoJSON';
repository: 'github://svenvc/NeoJSON/repository';
load.
Errored on these lines:
|
paths := json findPaths: [ :_ | true ]. |
|
paths do: [ :each | |
|
self assert: (json atPath: each) notNil ] |
I changed the :_ to :ignored and it went through, is NeoJSON that has to change to be supported on Squeak or do we have to go to Squeak and implement :_?
Or did I misunderstand the error?
Thank you in advance.
Loading NeoJSON into Smalltalk
Errored on these lines:
NeoJSON/repository/Neo-JSON-Tests/NeoJSONObjectTests.class.st
Lines 165 to 167 in 11e274d
I changed the
:_to:ignoredand it went through, is NeoJSON that has to change to be supported on Squeak or do we have to go to Squeak and implement:_?Or did I misunderstand the error?
Thank you in advance.