tracking this here: https://github.com/tintinweb/solidity-workspace/pull/4#issuecomment-2022551300 Testcase: https://github.com/tintinweb/solidity-workspace/blob/master/examples/learnSolidity.sol#L61-L62 ```solidity msg.sender.send{1 ETH}(); //this is actually illegal - note missing 'value:' RandomContract(lol).doSomething{value: 1 ETH}(); ``` Leads to unhandled exception: ``` ./js/solidity-workspace/node_modules/@solidity-parser/parser/dist/index.cjs.js:3252 }, this) : t2.accept(this); ^ TypeError: Cannot read properties of null (reading 'accept') ``` refs: https://github.com/tintinweb/solidity-workspace/pull/4