Do not allow whitespaces as % string delimiters
This commit is contained in:
parent
81118552c8
commit
a0d848da8d
|
@ -210,11 +210,13 @@ Token parse_percent_token(Reader& reader)
|
||||||
++reader;
|
++reader;
|
||||||
StringView type_name = reader.substr_from(type_start);
|
StringView type_name = reader.substr_from(type_start);
|
||||||
|
|
||||||
if (throw_on_unterminated and not reader)
|
if (not reader or is_blank(*reader))
|
||||||
throw parse_error{format("expected a string delimiter after '%{}'",
|
{
|
||||||
type_name)};
|
if (throw_on_unterminated)
|
||||||
else if (not reader)
|
throw parse_error{format("expected a string delimiter after '%{}'",
|
||||||
|
type_name)};
|
||||||
return {};
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
Token::Type type = token_type<throw_on_unterminated>(type_name);
|
Token::Type type = token_type<throw_on_unterminated>(type_name);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user