tom-weatherhead/thaw-parser

View on GitHub
src/shift-reduce-actions.ts

Summary

Maintainability
A
0 mins
Test Coverage
// tom-weatherhead/thaw-parser/src/shift-reduce-actions.ts

export enum ShiftReduceAction {
    Error,
    Accept,
    Shift,
    Reduce
}