mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
70 lines
1.5 KiB
JavaScript
70 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
const Parser = require('./parser');
|
|
const AtWord = require('./atword');
|
|
const Colon = require('./colon');
|
|
const Comma = require('./comma');
|
|
const Comment = require('./comment');
|
|
const Func = require('./function');
|
|
const Num = require('./number');
|
|
const Operator = require('./operator');
|
|
const Paren = require('./paren');
|
|
const Str = require('./string');
|
|
const UnicodeRange = require('./unicode-range');
|
|
const Value = require('./value');
|
|
const Word = require('./word');
|
|
|
|
let parser = function (source, options) {
|
|
return new Parser(source, options);
|
|
};
|
|
|
|
parser.atword = function (opts) {
|
|
return new AtWord(opts);
|
|
};
|
|
|
|
parser.colon = function (opts) {
|
|
return new Colon(Object.assign({ value: ':' }, opts));
|
|
};
|
|
|
|
parser.comma = function (opts) {
|
|
return new Comma(Object.assign({ value: ',' }, opts));
|
|
};
|
|
|
|
parser.comment = function (opts) {
|
|
return new Comment(opts);
|
|
};
|
|
|
|
parser.func = function (opts) {
|
|
return new Func(opts);
|
|
};
|
|
|
|
parser.number = function (opts) {
|
|
return new Num(opts);
|
|
};
|
|
|
|
parser.operator = function (opts) {
|
|
return new Operator(opts);
|
|
};
|
|
|
|
parser.paren = function (opts) {
|
|
return new Paren(Object.assign({ value: '(' }, opts));
|
|
};
|
|
|
|
parser.string = function (opts) {
|
|
return new Str(Object.assign({ quote: '\'' }, opts));
|
|
};
|
|
|
|
parser.value = function (opts) {
|
|
return new Value(opts);
|
|
};
|
|
|
|
parser.word = function (opts) {
|
|
return new Word(opts);
|
|
};
|
|
|
|
parser.unicodeRange = function (opts) {
|
|
return new UnicodeRange(opts);
|
|
};
|
|
|
|
module.exports = parser;
|