You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
753 B
31 lines
753 B
1 year ago
|
import syntax from './syntax/index.js';
|
||
|
|
||
|
export * from './version.js';
|
||
|
export { default as createSyntax } from './syntax/create.js';
|
||
|
export { List } from './utils/List.js';
|
||
|
export { Lexer } from './lexer/Lexer.js';
|
||
|
export { tokenTypes, tokenNames, TokenStream } from './tokenizer/index.js';
|
||
|
export * as definitionSyntax from './definition-syntax/index.js';
|
||
|
export { clone } from './utils/clone.js';
|
||
|
export * from './utils/names.js';
|
||
|
export * as ident from './utils/ident.js';
|
||
|
export * as string from './utils/string.js';
|
||
|
export * as url from './utils/url.js';
|
||
|
export const {
|
||
|
tokenize,
|
||
|
parse,
|
||
|
generate,
|
||
|
lexer,
|
||
|
createLexer,
|
||
|
|
||
|
walk,
|
||
|
find,
|
||
|
findLast,
|
||
|
findAll,
|
||
|
|
||
|
toPlainObject,
|
||
|
fromPlainObject,
|
||
|
|
||
|
fork
|
||
|
} = syntax;
|