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.
15 lines
343 B
15 lines
343 B
var inherits = require('util').inherits
|
|
var Parser = require('postcss/lib/parser')
|
|
var tokenizer = require('./tokenize')
|
|
|
|
inherits(InlineParser, Parser)
|
|
|
|
module.exports = InlineParser
|
|
|
|
function InlineParser(input) {
|
|
Parser.call(this, input)
|
|
}
|
|
|
|
InlineParser.prototype.createTokenizer = function() {
|
|
this.tokenizer = tokenizer(this.input)
|
|
}
|
|
|