mirror of
https://github.com/ChipmunkMC/node-brigadier-commands.git
synced 2024-11-14 19:14:55 -05:00
11 lines
275 B
JavaScript
11 lines
275 B
JavaScript
const StringReader = require('./StringReader.js')
|
|
|
|
class ParseResults {
|
|
constructor (context, reader = new StringReader(''), exceptions = new Map()) {
|
|
this.context = context
|
|
this.reader = reader
|
|
this.exceptions = exceptions
|
|
}
|
|
}
|
|
|
|
module.exports = ParseResults
|