PropertyExpected for map literal with interpolated key.

This commit is contained in:
Stephen Chung
2021-04-05 14:51:26 +08:00
parent 26bb88974a
commit 00784d39ad
2 changed files with 14 additions and 0 deletions

View File

@@ -710,6 +710,7 @@ fn parse_map_literal(
}
(s, pos)
}
(Token::InterpolatedString(_), pos) => return Err(PERR::PropertyExpected.into_err(pos)),
(Token::Reserved(s), pos) if is_valid_identifier(s.chars()) => {
return Err(PERR::Reserved(s).into_err(pos));
}