(window["webpackJsonpivprogCore"] = window["webpackJsonpivprogCore"] || []).push([["vendors~main"],{ /***/ "./node_modules/antlr4/BufferedTokenStream.js": /*!****************************************************!*\ !*** ./node_modules/antlr4/BufferedTokenStream.js ***! \****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { // /* 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. */ // This implementation of {@link TokenStream} loads tokens from a // {@link TokenSource} on-demand, and places the tokens in a buffer to provide // access to any previous token by index. // //

// This token stream ignores the value of {@link Token//getChannel}. If your // parser requires the token stream filter tokens to only those on a particular // channel, such as {@link Token//DEFAULT_CHANNEL} or // {@link Token//HIDDEN_CHANNEL}, use a filtering token stream such a // {@link CommonTokenStream}.

var Token = __webpack_require__(/*! ./Token */ "./node_modules/antlr4/Token.js").Token; var Lexer = __webpack_require__(/*! ./Lexer */ "./node_modules/antlr4/Lexer.js").Lexer; var Interval = __webpack_require__(/*! ./IntervalSet */ "./node_modules/antlr4/IntervalSet.js").Interval; // this is just to keep meaningful parameter types to Parser function TokenStream() { return this; } function BufferedTokenStream(tokenSource) { TokenStream.call(this); // The {@link TokenSource} from which tokens for this stream are fetched. this.tokenSource = tokenSource; // A collection of all tokens fetched from the token source. The list is // considered a complete view of the input once {@link //fetchedEOF} is set // to {@code true}. this.tokens = []; // The index into {@link //tokens} of the current token (next token to // {@link //consume}). {@link //tokens}{@code [}{@link //p}{@code ]} should // be // {@link //LT LT(1)}. // //

This field is set to -1 when the stream is first constructed or when // {@link //setTokenSource} is called, indicating that the first token has // not yet been fetched from the token source. For additional information, // see the documentation of {@link IntStream} for a description of // Initializing Methods.

this.index = -1; // Indicates whether the {@link Token//EOF} token has been fetched from // {@link //tokenSource} and added to {@link //tokens}. This field improves // performance for the following cases: // //