-
- Downloads
[LIGO-553] Better Michelson iterop
Problem: The way we currently handle Michelson code injections is not the best. We don't use `Verbatim` expressions and patterns (called `MichelsonCode` in our code for some reason) in all places where they may appear, and we expect a list of arguments in the injections while the Menhir grammars don't have such thing. Solution: Rename `michelson_code` to `Verbatim` in CameLIGO and ReasonLIGO and accept them in patterns and expressions. In PascaLIGO their usage is already correct, after the grammar rewrite, and in JsLIGO, only renaming was needed, as this parser doesn't allow them to appear in arbitrary expressions and patterns. Delete the arguments, as they aren't really valid LIGO code. Also delete them from `Michelson` in the Haskell portion of the code. Rename `MichelsonCode` to `Verbatim` in the Haskell portion of the code.
Showing
- tools/lsp/squirrel/grammar/camligo/grammar.js 4 additions, 8 deletionstools/lsp/squirrel/grammar/camligo/grammar.js
- tools/lsp/squirrel/grammar/jsligo/grammar.js 3 additions, 4 deletionstools/lsp/squirrel/grammar/jsligo/grammar.js
- tools/lsp/squirrel/grammar/jsligo/test/corpus/michelson_interop.txt 1 addition, 1 deletion...squirrel/grammar/jsligo/test/corpus/michelson_interop.txt
- tools/lsp/squirrel/grammar/pascaligo/grammar.js 0 additions, 1 deletiontools/lsp/squirrel/grammar/pascaligo/grammar.js
- tools/lsp/squirrel/grammar/reasonligo/grammar.js 4 additions, 8 deletionstools/lsp/squirrel/grammar/reasonligo/grammar.js
- tools/lsp/squirrel/src/AST/Parser/Camligo.hs 4 additions, 4 deletionstools/lsp/squirrel/src/AST/Parser/Camligo.hs
- tools/lsp/squirrel/src/AST/Parser/Jsligo.hs 5 additions, 5 deletionstools/lsp/squirrel/src/AST/Parser/Jsligo.hs
- tools/lsp/squirrel/src/AST/Parser/Pascaligo.hs 2 additions, 2 deletionstools/lsp/squirrel/src/AST/Parser/Pascaligo.hs
- tools/lsp/squirrel/src/AST/Parser/Reasonligo.hs 4 additions, 4 deletionstools/lsp/squirrel/src/AST/Parser/Reasonligo.hs
- tools/lsp/squirrel/src/AST/Pretty.hs 5 additions, 5 deletionstools/lsp/squirrel/src/AST/Pretty.hs
- tools/lsp/squirrel/src/AST/Skeleton.hs 6 additions, 6 deletionstools/lsp/squirrel/src/AST/Skeleton.hs
Loading
Please register or sign in to comment