Sign in
chromium
/
external
/
github.com
/
antlr
/
antlr4
/
refs/heads/dev
/
.
/
runtime
/
JavaScript
/
src
/
antlr4
/
FileStream.d.ts
blob: 204b09dcbfdcd13bf716f1d49084a90481e9e55e [
file
] [
log
] [
blame
] [
edit
]
import
{
CharStream
}
from
"./CharStream"
;
export
declare
class
FileStream
extends
CharStream
{
fileName
:
string
;
constructor
(
fileName
:
string
,
encoding
?:
string
,
decodeToUnicodeCodePoints
?:
boolean
);
}