Skip to content

Commit

Permalink
Update for 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
lerno committed Jun 24, 2023
1 parent 990cbdf commit 810f646
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

## [Unreleased]

## [0.0.9] - 2023-06-24

### Updated
- `assert` now accepts printf style arguments.

## [0.0.8] - 2023-06-19

### Updated
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.github.c3lang.c3intellij
pluginName = c3intellij
pluginRepositoryUrl = https://github.com/c3lang/c3intellij
# SemVer format -> https://semver.org
pluginVersion = 0.0.8
pluginVersion = 0.0.9

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 222
Expand Down
10 changes: 7 additions & 3 deletions src/main/gen/org/c3lang/intellij/parser/C3Parser.java

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main/java/org/c3lang/intellij/C3.bnf
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ const_decl ::= KW_CONST type? CONST_IDENT attributes? EQ expr EOS

ct_assert_stmt ::= KW_CT_ERROR constant_expr EOS | KW_CT_ASSERT constant_expr (COLON constant_expr)? EOS
ct_echo_stmt ::= KW_CT_ECHO constant_expr EOS
assert_stmt ::= KW_ASSERT LP (try_unwrap_chain | expr) (COMMA expr)? RP EOS
assert_stmt ::= KW_ASSERT LP (try_unwrap_chain | expr) (COMMA expr)* RP EOS
ct_if_stmt ::= KW_CT_IF constant_expr COLON statement_list? (KW_CT_ELSE statement_list?)? KW_CT_ENDIF

ct_switch_stmt ::= ct_switch ct_switch_body KW_CT_ENDSWITCH
Expand Down

0 comments on commit 810f646

Please sign in to comment.