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.
69 lines
1.5 KiB
69 lines
1.5 KiB
'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;
|
|
|