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
#14 adds a parse transformation that changes message handling in programs under test. It works fine, but the subtrees are matched and constructed by using explicit data structures used in the representation, rather than via an API (see review comments here).
Unfortunately, this syntax tree representation doesn't seem to have a common API (unlike the format with erl_syntax), so in the worst case, we may introduce our own functions for the construct we use (see a similar example here).
The text was updated successfully, but these errors were encountered:
#14 adds a parse transformation that changes message handling in programs under test. It works fine, but the subtrees are matched and constructed by using explicit data structures used in the representation, rather than via an API (see review comments here).
Unfortunately, this syntax tree representation doesn't seem to have a common API (unlike the format with
erl_syntax
), so in the worst case, we may introduce our own functions for the construct we use (see a similar example here).The text was updated successfully, but these errors were encountered: