26 lines
757 B
C++
Executable File
26 lines
757 B
C++
Executable File
/* 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.
|
|
*/
|
|
|
|
#include "atn/ATNState.h"
|
|
|
|
#include "atn/WildcardTransition.h"
|
|
|
|
using namespace antlr4::atn;
|
|
|
|
WildcardTransition::WildcardTransition(ATNState *target) : Transition(target) {
|
|
}
|
|
|
|
Transition::SerializationType WildcardTransition::getSerializationType() const {
|
|
return WILDCARD;
|
|
}
|
|
|
|
bool WildcardTransition::matches(size_t symbol, size_t minVocabSymbol, size_t maxVocabSymbol) const {
|
|
return symbol >= minVocabSymbol && symbol <= maxVocabSymbol;
|
|
}
|
|
|
|
std::string WildcardTransition::toString() const {
|
|
return "WILDCARD " + Transition::toString() + " {}";
|
|
}
|