Sha256: 6d0d2bf3f4ede6df269f070cb6260d7c68ffabfbec89b3f6bb601a33fe04f665
Contents?: true
Size: 559 Bytes
Versions: 47
Compression:
Stored size: 559 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 "Parser.h" #include "InputMismatchException.h" using namespace antlr4; InputMismatchException::InputMismatchException(Parser *recognizer) : RecognitionException(recognizer, recognizer->getInputStream(), recognizer->getContext(), recognizer->getCurrentToken()) { } InputMismatchException::~InputMismatchException() { }
Version data entries
47 entries across 47 versions & 4 rubygems