Issue #2142 - follow-up rev 51db22ff, removing static keyword from upstream force-push rev aa6d42e5fc..63a00fdd25

This commit is contained in:
roytam1 2023-05-03 21:39:40 +08:00
commit fa52ac972f
2 changed files with 4 additions and 4 deletions

View file

@ -167,7 +167,7 @@ IsIdentifier(const Latin1Char* chars, size_t length)
return ::IsIdentifier(chars, length);
}
static bool
bool
IsIdentifierNameOrPrivateName(const Latin1Char* chars, size_t length)
{
if (length == 0)
@ -189,7 +189,7 @@ IsIdentifier(const char16_t* chars, size_t length)
return ::IsIdentifier(chars, length);
}
static bool
bool
IsIdentifierMaybeNonBMP(const char16_t* chars, size_t length)
{
if (length == 0)
@ -219,7 +219,7 @@ IsIdentifierMaybeNonBMP(const char16_t* chars, size_t length)
return true;
}
static bool
bool
IsIdentifierNameOrPrivateNameMaybeNonBMP(const char16_t* chars, size_t length)
{
if (length == 0)