Sha256: 5786e4dab600121365ea0fe4248a91d87c28446f0c529418ba9a5f8aaafa9b38
Contents?: true
Size: 680 Bytes
Versions: 19
Compression:
Stored size: 680 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. */ #include "atn/ATNState.h" #include "atn/WildcardTransition.h" using namespace antlr4::atn; WildcardTransition::WildcardTransition(ATNState *target) : Transition(TransitionType::WILDCARD, target) { } 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() + " {}"; }
Version data entries
19 entries across 19 versions & 3 rubygems