Source
stdlib/parsers/json/document.hpp
1
// Copyright (c) 2026 BigBrain LLC. MIT-licensed (see LICENSE).2
// Original work; see ACKNOWLEDGMENTS.md for the open-source ideas we build upon.3
#pragma once5
// cheatah::parsers::json — Document: the root of a parsed tree. It is just a Node, named for6
// intent at call sites (parse() returns a Document; dump() takes one).8
#include "node.hpp"10
namespace cheatah::parsers::json {12
using Document = Node;14
} // namespace cheatah::parsers::json