Sha256: 254445c8234b3b9e8c4800b604ff1f737bc22a2a97ac81601223d7ba496c5e6e

Contents?: true

Size: 752 Bytes

Versions: 3

Compression:

Stored size: 752 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/ATN.h"

#include "RuleContextWithAltNum.h"

using namespace antlr4;
using namespace antlr4::atn;

RuleContextWithAltNum::RuleContextWithAltNum() : ParserRuleContext() {
  altNum = ATN::INVALID_ALT_NUMBER;
}

RuleContextWithAltNum::RuleContextWithAltNum(ParserRuleContext *parent, int invokingStateNumber)
  : ParserRuleContext(parent, invokingStateNumber) {
}

size_t RuleContextWithAltNum::getAltNumber() const {
  return altNum;
}

void RuleContextWithAltNum::setAltNumber(size_t number) {
  altNum = number;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
expressir-0.2.6 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp
expressir-0.2.5-x64-mingw32 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp
expressir-0.2.4-x64-mingw32 ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp