2022-07-22 04:36:41 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
|
|
|
|
inline bool isFlagExperimental(const char* flag)
|
|
|
|
{
|
|
|
|
// Flags in this list are disabled by default in various command-line tools. They may have behavior that is not fully final,
|
|
|
|
// or critical bugs that are found after the code has been submitted.
|
2022-08-05 05:27:28 +08:00
|
|
|
static const char* kList[] = {
|
2022-07-22 04:36:41 +08:00
|
|
|
"LuauLowerBoundsCalculation",
|
|
|
|
nullptr, // makes sure we always have at least one entry
|
|
|
|
};
|
|
|
|
|
2022-08-05 05:27:28 +08:00
|
|
|
for (const char* item : kList)
|
2022-07-22 04:36:41 +08:00
|
|
|
if (item && strcmp(item, flag) == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-08-05 05:27:28 +08:00
|
|
|
} // namespace Luau
|