Cleaning up UI primitives. fixing parser bugs. still struggling to make a command palette lol

This commit is contained in:
Dustin Swan 2026-02-07 15:23:25 -07:00
parent 2d687b5d38
commit da97f53729
No known key found for this signature in database
GPG key ID: 30D46587E2100467
10 changed files with 66 additions and 23 deletions

View file

@ -168,7 +168,7 @@ export class Parser {
if (this.current().kind == 'colon-equals') {
const token = this.current();
this.advance();
const value = this.parseExpression();
const value = this.parseExpressionNoMatch();
return { kind: 'rebind', target: expr, value, ...this.getPos(token) };
}