pluto-src 0.1.1+0.10.4

Sources of Pluto (Lua 5.4 dialect) and logic to build it.
Documentation
#include "JsonNull.hpp"

#include "Writer.hpp"

NAMESPACE_SOUP
{
	JsonNull::JsonNull() noexcept
		: JsonNode(JSON_NULL)
	{
	}

	void JsonNull::encodeAndAppendTo(std::string& str) const SOUP_EXCAL
	{
		str.append("null");
	}

	bool JsonNull::binaryEncode(Writer& w) const
	{
		uint8_t b = JSON_NULL;
		return w.u8(b);
	}
}