Sha256: 0cb439a0ac3edbe2de1c7fb38f4435b7421bed89e956360170e65c36d3980ee7
Contents?: true
Size: 573 Bytes
Versions: 3
Compression:
Stored size: 573 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 "atn/ATNState.h" namespace antlr4 { namespace atn { class ANTLR4CPP_PUBLIC RuleStartState final : public ATNState { public: RuleStartState(); RuleStopState *stopState = nullptr; bool isLeftRecursiveRule = false; virtual size_t getStateType() override; }; } // namespace atn } // namespace antlr4
Version data entries
3 entries across 3 versions & 1 rubygems