otto/services/parser/src/ParseListener.ts

10 lines
290 B
TypeScript

/*
* The ParseListener is the initial entrypoint for building the graph
*/
import { Otto } from '@otto/grammar/Otto'
import { OttoLexer } from '@otto/grammar/OttoLexer'
import { OttoListener } from '@otto/grammar/OttoListener'
export default class ParseListener extends OttoListener {
}