Skip to content

Commit

Permalink
Fix kompilation warning in test.md (#611)
Browse files Browse the repository at this point in the history
* Fix kompilation warning in `test.md`

Co-authored-by: Virgil <[email protected]>

* Set Version: 0.1.31

---------

Co-authored-by: Virgil <[email protected]>
Co-authored-by: devops <[email protected]>
  • Loading branch information
3 people authored Apr 15, 2024
1 parent 6ac1a42 commit da66a27
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.30
0.1.31
2 changes: 1 addition & 1 deletion pykwasm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "pykwasm"
version = "0.1.30"
version = "0.1.31"
description = ""
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down
1 change: 1 addition & 0 deletions pykwasm/src/pykwasm/kdist/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def context(self) -> dict[str, str]:
'main_module': 'WASM-TEST',
'syntax_module': 'WASM-TEST-SYNTAX',
'md_selector': 'k',
'warning_to_error': True,
'gen_glr_bison_parser': True,
'opt_level': 2,
'ccopts': ['-g'],
Expand Down
4 changes: 3 additions & 1 deletion pykwasm/src/pykwasm/kdist/wasm-semantics/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,11 @@ We add `token` as a value in order to use as a separator in `<valstack>`.
```k
syntax Val ::= "token"
// ----------------------
rule #sameType(token, _) => false
rule <instrs> token => .K ... </instrs>
<valstack> S => token : S </valstack>
syntax ValStack ::= takeUntilToken(ValStack) [function, total]
| dropUntilToken(ValStack) [function, total]
// -----------------------------------------------------------------
Expand Down

0 comments on commit da66a27

Please sign in to comment.