Skip to content
Snippets Groups Projects
Verified Commit 46cd9d8a authored by Leonid Vasilev's avatar Leonid Vasilev :heart_eyes_cat:
Browse files

[LIGO-603] Add a hack to make non-inlined functions work

Problem: debugging contracts with non-inlined functions doesn't work.
I think the reason is the same as with conditionals.

Solution: add the same hack as with conditionals: skip one entry when
we face `LAMBDA` instruction.
parent 9a0240f1
No related branches found
No related tags found
Loading
...@@ -157,6 +157,8 @@ michelsonInstrInnerBranches = \case ...@@ -157,6 +157,8 @@ michelsonInstrInnerBranches = \case
DIP{} -> 1 DIP{} -> 1
DIPN{} -> 1 DIPN{} -> 1
LAMBDA{} -> 1
_ -> 0 _ -> 0
-- | Read LIGO's debug output and produce -- | Read LIGO's debug output and produce
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment