File size: 275 Bytes
b5ea024
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import createSyntax from './create.js';
import lexerConfig from './config/lexer.js';
import parserConfig from './config/parser.js';
import walkerConfig from './config/walker.js';

export default createSyntax({
    ...lexerConfig,
    ...parserConfig,
    ...walkerConfig
});