You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: better asm parsing according to upstream Tact compiler parser
Additionally, a lot of choices were made to better accomodate the future
Tact assembly grammar (not in syntax, but in node names and layout) and
facilitate language server use
Closes#49
Copy file name to clipboardexpand all lines: README.md
+3-4
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,11 @@
6
6
7
7
A fully-featured 🌳 [Tree-sitter](https://github.com/tree-sitter/tree-sitter) grammar for the ⚡ Tact contract programming language:
8
8
9
-
- 🍰 Parses whole Tact grammar as defined in [grammar.ohm](https://github.com/tact-lang/tact/blob/main/src/grammar/grammar.ohm) (with performance and usability in mind).
9
+
- 🍰 Parses whole Tact grammar as defined in [grammar.gg](https://github.com/tact-lang/tact/blob/da4b8d82128cf4b6f9b04d93a93a9382407112c2/src/grammar/next/grammar.gg) (with performance and usability in mind).
10
10
- 🎨 Provides highlighting, scoping and tagging [queries](#-structure).
11
11
- ⚙ Test-covered (including queries), reflects latest Tact language updates.
12
12
- 🚀 See guidelines on usage and integration in editors supporting Tree-sitter [below](#-usage).
13
13
14
-
Note, that the only limiting point are the `asm` functions introduced in Tact 1.5.0 — their bodies doesn't produce any highlighting and can be ill-parsed for now, so expect ERROR nodes in the parse tree. In the future, this is planned to be resolved by an external scanner — it can parse much more, and it can yield more tokens for subsequent highlighting.
15
-
16
14
## 🚀 Usage
17
15
18
16
### Neovim
@@ -205,7 +203,8 @@ To find highlighting and other queries for specific editors, look in the `editor
205
203
206
204
## ⚙ References
207
205
208
-
-[grammar.ohm](https://github.com/tact-lang/tact/blob/main/src/grammar/grammar.ohm) — Official grammar specification in Ohm PEG language.
206
+
-[grammar.gg](https://github.com/tact-lang/tact/blob/da4b8d82128cf4b6f9b04d93a93a9382407112c2/src/grammar/next/grammar.gg) — Official Tact grammar specification.
207
+
-[grammar.ohm](https://github.com/tact-lang/tact/blob/da4b8d82128cf4b6f9b04d93a93a9382407112c2/src/grammar/prev/grammar.ohm) — Previous, now outdated Tact grammar specification in Ohm PEG language.
209
208
-[tact-by-example](https://github.com/tact-lang/tact-by-example) — Many different contract samples.
0 commit comments