/* 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/LexerAction.h" #include "atn/LexerActionType.h" namespace antlr4 { namespace atn { /// /// Executes a custom lexer action by calling with the /// rule and action indexes assigned to the custom action. The implementation of /// a custom action is added to the generated code for the lexer in an override /// of when the grammar is compiled. /// /// This class may represent embedded actions created with the {...} /// syntax in ANTLR 4, as well as actions created for lexer commands where the /// command argument could not be evaluated when the grammar was compiled. /// /// @author Sam Harwell /// @since 4.2 /// class ANTLR4CPP_PUBLIC LexerCustomAction final : public LexerAction { public: /// /// Constructs a custom lexer action with the specified rule and action /// indexes. /// /// The rule index to use for calls to /// . /// The action index to use for calls to /// . LexerCustomAction(size_t ruleIndex, size_t actionIndex); /// /// Gets the rule index to use for calls to . /// /// The rule index for the custom action. size_t getRuleIndex() const; /// /// Gets the action index to use for calls to . /// /// The action index for the custom action. size_t getActionIndex() const; /// /// {@inheritDoc} /// /// This method returns . virtual LexerActionType getActionType() const override; /// /// Gets whether the lexer action is position-dependent. Position-dependent /// actions may have different semantics depending on the /// index at the time the action is executed. /// /// Custom actions are position-dependent since they may represent a /// user-defined embedded action which makes calls to methods like /// . /// /// This method returns {@code true}. virtual bool isPositionDependent() const override; /// /// {@inheritDoc} /// /// Custom actions are implemented by calling with the /// appropriate rule and action indexes. /// virtual void execute(Lexer *lexer) override; virtual size_t hashCode() const override; virtual bool operator == (const LexerAction &obj) const override; virtual std::string toString() const override; private: const size_t _ruleIndex; const size_t _actionIndex; }; } // namespace atn } // namespace antlr4