We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Running parseall(SyntaxNode, "abc", ignore_error=true) should throw because "ignore_error" is not a valid keyword.
parseall(SyntaxNode, "abc", ignore_error=true)
julia> parseall(SyntaxNode, "abc", ignore_error=true) line:col│ tree │ file_name 1:1 │[toplevel] 1:1 │ abc julia> parseall(SyntaxNode, "abc +", ignore_error=true) ERROR: ParseError: # Error @ line 1:6 abc + # └ ── premature end of input Stacktrace: [1] _parse(rule::Symbol, need_eof::Bool, ::Type{…}, text::String, index::Int64; version::VersionNumber, ignore_trivia::Bool, filename::Nothing, first_line::Int64, ignore_errors::Bool, ignore_warnings::Bool, kws::@Kwargs{…}) @ JuliaSyntax ~/.julia/packages/JuliaSyntax/eqCSU/src/parser_api.jl:93 [2] _parse (repeats 2 times) @ ~/.julia/packages/JuliaSyntax/eqCSU/src/parser_api.jl:77 [inlined] [3] #parseall#96 @ ~/.julia/packages/JuliaSyntax/eqCSU/src/parser_api.jl:143 [inlined] [4] top-level scope @ REPL[306]:1 Some type information was truncated. Use `show(err)` to see complete types. julia> parseall(SyntaxNode, "abc +", ignore_errors=true) line:col│ tree │ file_name 1:1 │[toplevel] 1:1 │ [call-i] 1:1 │ abc 1:5 │ + 1:6 │ ✘
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Running
parseall(SyntaxNode, "abc", ignore_error=true)
should throw because "ignore_error" is not a valid keyword.The text was updated successfully, but these errors were encountered: