Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ktn_dodger "fails" on unterminated strings even with no_fail on. #66

Open
elbrujohalcon opened this issue Aug 30, 2021 · 0 comments
Open

Comments

@elbrujohalcon
Copy link
Member

When running ktn_code:parse_file/3 with nofail on a file like this one…

-module(recipe_15).

-export([x/0]).

x() ->
    "This is an unterminated string,
    some:more(stuff).

…the result looks like this…

-module(recipe_15).

-export([x/0]).

** 6: unterminated string starting with "This is an unter" **

It should look more like…

-module(recipe_15).

-export([x/0]).

x() ->
    "This is an unterminated string,    some:more(stuff).

Related Ticket

AdRoll/rebar3_format#279 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant