blob: e2df759a2c572d6224e03580f7009026a1442e13 [file] [log] [blame]
/**
* A source of characters for an ANTLR lexer.
* This class should not be instantiated directly. Instead, use one of its subclasses.
* @class
* @extends org.antlr.runtime.IntStream
*/
org.antlr.runtime.CharStream = function() {};
org.antlr.runtime.IntStream = function() {};
org.antlr.lang.extend(org.antlr.runtime.CharStream,
org.antlr.runtime.IntStream);
org.antlr.lang.augmentObject(org.antlr.runtime.CharStream,
/** @lends org.antlr.runtime.CharStream */
{
/**
* Token type of the EOF character.
* @type Number
*/
EOF: -1
});