You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
255 B

#pragma once
#include <iosfwd>
#include "antlr4-runtime.h"
// 以树状缩进形式打印语法树(仅保留关键节点/记号)。
void PrintSyntaxTree(antlr4::tree::ParseTree* tree, antlr4::Parser* parser,
std::ostream& os);