/* 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 "antlr4-common.h" namespace antlr4 { namespace atn { /// /// Represents the serialization type of a . /// /// @author Sam Harwell /// @since 4.2 /// enum class LexerActionType : size_t { /// /// The type of a action. /// CHANNEL, /// /// The type of a action. /// CUSTOM, /// /// The type of a action. /// MODE, /// /// The type of a action. /// MORE, /// /// The type of a action. /// POP_MODE, /// /// The type of a action. /// PUSH_MODE, /// /// The type of a action. /// SKIP, /// /// The type of a action. /// TYPE, }; } // namespace atn } // namespace antlr4