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
However, the error position is inaccurate, as it points to the parent PathImport node, rather than being narrowed down to the specific ( ) node that has the error. We should look into the nom error propagation in crates/metaslang/cst/src/query/parser.rs, and see if we can control/improve.
The text was updated successfully, but these errors were encountered:
The following query is incorrect, as the
variant:
filter should be applied to each literal in the choices:It would produce this error:
The correct version would be:
However, the error position is inaccurate, as it points to the parent
PathImport
node, rather than being narrowed down to the specific( )
node that has the error. We should look into thenom
error propagation incrates/metaslang/cst/src/query/parser.rs
, and see if we can control/improve.The text was updated successfully, but these errors were encountered: