Sha256: 0f71f0512acbd12450b582b991aeffc1f116f4dae4707f0f1330b7178cdb484d
Contents?: true
Size: 430 Bytes
Versions: 19
Compression:
Stored size: 430 Bytes
Contents
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved. * Use of this file is governed by the BSD 3-clause license that * can be found in the LICENSE.txt file in the project root. */ #pragma once #include <cstddef> #include "antlr4-common.h" namespace antlr4 { namespace tree { enum class ParseTreeType : size_t { TERMINAL = 1, ERROR = 2, RULE = 3, }; } // namespace tree } // namespace antlr4
Version data entries
19 entries across 19 versions & 3 rubygems