mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 19:19:30 +08:00
10 lines
275 B
Text
10 lines
275 B
Text
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
|
|
});
|