Skip to content

Commit

Permalink
Fix to parseBlock() to consume colons after parsing a statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
sancarn committed Mar 10, 2024
1 parent ba08496 commit f44457f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,3 +265,4 @@ Before `08/07/2021` a change log was not kept. We have retrospectively gone back
- 2024-01-28 `stdLambda` FIX - Fix to dictionary getters broken since `2023-12-05` update.
- 2024-02-22 `stdCOM` FEATURE - Added `CreateFrinCkassAndIID()`.
- 2024-03-10 `stdLambda` FIX - `=` in `if` statements failed due to `2023-12-05 stdLambda FEATURE` release. This has been resolved.
- 2024-03-10 `stdLambda` FIX - Fix to `parseBlock()` to consume colons after parsing a statement.
1 change: 1 addition & 0 deletions src/stdLambda.cls
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,7 @@ Private Sub parseBlock(ParamArray endToken() As Variant)
Do
While optConsume("colon"): Wend
Call parseStatement
While optConsume("colon"): Wend

For i = LBound(endToken) To UBound(endToken)
If peek(endToken(i)) Then
Expand Down

0 comments on commit f44457f

Please sign in to comment.