luau-src-rs/luau/Common/include/Luau/ExperimentalFlags.h

29 lines
917 B
C
Raw Normal View History

2022-08-23 05:35:40 -04: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.
static const char* kList[] = {
2022-09-17 17:10:30 -04:00
"LuauInterpolatedStringBaseSupport",
2022-10-08 18:20:40 -04:00
"LuauInstantiateInSubtyping", // requires some fixes to lua-apps code
2022-11-10 19:36:44 -05:00
"LuauTryhardAnd", // waiting for a fix in graphql-lua -> apollo-client-lia -> lua-apps
2022-09-17 17:10:30 -04:00
// makes sure we always have at least one entry
nullptr,
2022-08-23 05:35:40 -04:00
};
for (const char* item : kList)
if (item && strcmp(item, flag) == 0)
return true;
return false;
}
} // namespace Luau