luau/Analysis/include/Luau/AstJsonEncoder.h

17 lines
355 B
C
Raw Normal View History

// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#pragma once
#include <string>
2022-07-21 17:16:54 -04:00
#include <vector>
namespace Luau
{
class AstNode;
2022-07-21 17:16:54 -04:00
struct Comment;
std::string toJson(AstNode* node);
2022-07-21 17:16:54 -04:00
std::string toJson(AstNode* node, const std::vector<Comment>& commentLocations);
} // namespace Luau