// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details1#include "src/libfuzzer/libfuzzer_macro.h"2#include "luau.pb.h"34std::vector<std::string> protoprint(const luau::ModuleSet& stat, bool types);56DEFINE_PROTO_FUZZER(const luau::ModuleSet& message)7{8std::vector<std::string> sources = protoprint(message, true);910for (size_t i = 0; i < sources.size(); i++)11{12printf("Module 'l%d':\n", int(i));13printf("%s\n", sources[i].c_str());14}15}161718