luau-syntax 0.732.0

Luau lexer, parser, AST, CST, and source utilities
Documentation
use super::*;

// Parser.test.cpp: parse_interpolated_string_with_lookahead_involved
#[test]
fn parse_interpolated_string_with_lookahead_involved() {
    parse_ok(
        r#"
        local x = `{ {y} }`
    "#,
    );
}
// Parser.test.cpp: parse_interpolated_string_with_lookahead_involved2
#[test]
fn parse_interpolated_string_with_lookahead_involved2() {
    parse_ok(
        r#"
        local x = `{ { y{} } }`
    "#,
    );
}