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))
|
||||
, data(data)
|
||||
{
|
||||
LUAU_ASSERT( \
|
||||
type == RawString \
|
||||
|| type == QuotedString \
|
||||
|| type == InterpStringBegin \
|
||||
|| type == InterpStringMid \
|
||||
|| type == InterpStringEnd \
|
||||
|| type == Number \
|
||||
|| type == Comment \
|
||||
|| type == BlockComment \
|
||||
LUAU_ASSERT(
|
||||
type == RawString
|
||||
|| type == QuotedString
|
||||
|| type == InterpStringBegin
|
||||
|| type == InterpStringMid
|
||||
|| type == InterpStringEnd
|
||||
|| type == Number
|
||||
|| type == Comment
|
||||
|| type == BlockComment
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue