mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Remove backslashes
This commit is contained in:
parent
dd2c4e9391
commit
8dcbebaa70
1 changed files with 9 additions and 9 deletions
|
@ -91,15 +91,15 @@ Lexeme::Lexeme(const Location& location, Type type, const char* data, size_t siz
|
||||||
, length(unsigned(size))
|
, length(unsigned(size))
|
||||||
, data(data)
|
, data(data)
|
||||||
{
|
{
|
||||||
LUAU_ASSERT( \
|
LUAU_ASSERT(
|
||||||
type == RawString \
|
type == RawString
|
||||||
|| type == QuotedString \
|
|| type == QuotedString
|
||||||
|| type == InterpStringBegin \
|
|| type == InterpStringBegin
|
||||||
|| type == InterpStringMid \
|
|| type == InterpStringMid
|
||||||
|| type == InterpStringEnd \
|
|| type == InterpStringEnd
|
||||||
|| type == Number \
|
|| type == Number
|
||||||
|| type == Comment \
|
|| type == Comment
|
||||||
|| type == BlockComment \
|
|| type == BlockComment
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue