// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details1#include "Luau/Compiler.h"2#include "Luau/Common.h"34#include <string>56#include <string.h>78extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size)9{10for (Luau::FValue<bool>* flag = Luau::FValue<bool>::list; flag; flag = flag->next)11{12if (strncmp(flag->name, "Luau", 4) == 0)13flag->value = true;14}1516Luau::compile(std::string(reinterpret_cast<const char*>(Data), Size));17return 0;18}192021