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
// Test case for unescaped single quotes in triple quotes
// TODO: THIS PARSES INCORRECTLY! Rare case, but should be fixed
// if a customer complains about it.
test_deserializer!(
unescaped_single_quotes_in_triple_quotes,
BAML_FILE,
r#"
{
"type": "code",
"code": """print("""Hello, world!""")"""
}
"#,
FieldType::class("Test"),
{
"type": "code",
"code": "print("
}
);
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: