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
error_messages!{TypeQLError
code:"TQL",type:"TypeQL Error",SyntaxErrorDetailed(usize,String,String,String) = // unnamed parameters3:"There is a syntax error at line {}:\n{}\n{}\n{}",// opaque format string}
After:
error_messages!{TypeQLError
code:"TQL",type:"TypeQL Error",SyntaxErrorDetailed{ line:usize, text:String, pointer:String, error:String} = // named parameters3:"There is a syntax error at line {line}:\n{text}\n{pointer}\n{error}",// string interpolation}
The text was updated successfully, but these errors were encountered:
Before:
After:
The text was updated successfully, but these errors were encountered: