summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/src/trie/sequence.ts
blob: 6b17e02f23a75c636020e6918e24b5db8cd6821e (plain)
1
2
3
4
5
6
7
8
9
import { node as api } from 'llparse-builder';
import { TrieNode } from './node';

export class TrieSequence extends TrieNode {
  constructor(public readonly select: Buffer,
              public readonly child: TrieNode) {
    super();
  }
}