Sha256: 8612bc70ac87f0f4fb647981f8528f0e88440ad65c6e8bbf7c8d7d5fff80810f
Contents?: true
Size: 548 Bytes
Versions: 28
Compression:
Stored size: 548 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
28 entries across 28 versions & 2 rubygems