-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 将read踢出关键字 - 将功能稍微分箱 - 小改报错前缀 - 对生成的一些`Value::Var`改为`Value::ReprVar` - 对跨行字符串稍微修改, 使其换行时使用`\n`
- Loading branch information
Showing
14 changed files
with
733 additions
and
45 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mindustry_logic_bang_lang" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
edition = "2021" | ||
|
||
authors = ["A4-Tacks <[email protected]>"] | ||
|
@@ -15,6 +15,9 @@ lalrpop = "0.20.0" | |
|
||
|
||
[dependencies] | ||
tag_code = { path = "./tools/tag_code", version = "*" } | ||
display_source = { path = "./tools/display_source", version = "*" } | ||
|
||
[dependencies.lalrpop-util] | ||
version = "0.20.0" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pub mod syntax; | ||
pub mod syntax_def; | ||
pub mod tag_code; | ||
pub use tag_code; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.