智能照明系统APP-本地串口
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.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/ce/ce777986fb03e1b56fd3aa9cad3...

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)
}