Archived tweet #10478 from the @leastfixedpoint Twitter ArchiveI've used Ohm before to extend JS with Syndicate-specific syntax. Is it still best? What about sweet.js or a babel plugin? It'd need to support eg
spawn {
field this.balance = 0;
assert account(this.balance);
on message deposit($amount) {
this.balance += amount;
}
}