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
Both in the lexer and in the impl From<&'_ ast::StringValue> for String conversion, block strings and "normal" string literals are treated the same except for the number of double-quote delimiters. Block strings should accept different escape sequences (only \"""), remove leading/trailing empty lines, and remove common indent.
Description
Both in the lexer and in the
impl From<&'_ ast::StringValue> for String
conversion, block strings and "normal" string literals are treated the same except for the number of double-quote delimiters. Block strings should accept different escape sequences (only\"""
), remove leading/trailing empty lines, and remove common indent.https://spec.graphql.org/October2021/#sec-String-Value.Semantics
Steps to reproduce
crates/apollo-parser/src/ast/node_ext.rs
Expected result
Tests pass
Actual result
Environment
apollo-rs
crate: apollo-parserThe text was updated successfully, but these errors were encountered: