Cleaning up UI primitives. fixing parser bugs. still struggling to make a command palette lol
This commit is contained in:
parent
2d687b5d38
commit
da97f53729
10 changed files with 66 additions and 23 deletions
|
|
@ -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) };
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue