mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 03:27:29 -04:00
515 lines
52 KiB
JavaScript
515 lines
52 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
exports.__esModule = true;
|
||
|
|
||
|
var _declaration = require('./declaration');
|
||
|
|
||
|
var _declaration2 = _interopRequireDefault(_declaration);
|
||
|
|
||
|
var _tokenize = require('./tokenize');
|
||
|
|
||
|
var _tokenize2 = _interopRequireDefault(_tokenize);
|
||
|
|
||
|
var _comment = require('./comment');
|
||
|
|
||
|
var _comment2 = _interopRequireDefault(_comment);
|
||
|
|
||
|
var _atRule = require('./at-rule');
|
||
|
|
||
|
var _atRule2 = _interopRequireDefault(_atRule);
|
||
|
|
||
|
var _root = require('./root');
|
||
|
|
||
|
var _root2 = _interopRequireDefault(_root);
|
||
|
|
||
|
var _rule = require('./rule');
|
||
|
|
||
|
var _rule2 = _interopRequireDefault(_rule);
|
||
|
|
||
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||
|
|
||
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||
|
|
||
|
var Parser = function () {
|
||
|
function Parser(input) {
|
||
|
_classCallCheck(this, Parser);
|
||
|
|
||
|
this.input = input;
|
||
|
|
||
|
this.pos = 0;
|
||
|
this.root = new _root2.default();
|
||
|
this.current = this.root;
|
||
|
this.spaces = '';
|
||
|
this.semicolon = false;
|
||
|
|
||
|
this.root.source = { input: input, start: { line: 1, column: 1 } };
|
||
|
}
|
||
|
|
||
|
Parser.prototype.tokenize = function tokenize() {
|
||
|
this.tokens = (0, _tokenize2.default)(this.input);
|
||
|
};
|
||
|
|
||
|
Parser.prototype.loop = function loop() {
|
||
|
var token = void 0;
|
||
|
while (this.pos < this.tokens.length) {
|
||
|
token = this.tokens[this.pos];
|
||
|
|
||
|
switch (token[0]) {
|
||
|
|
||
|
case 'space':
|
||
|
case ';':
|
||
|
this.spaces += token[1];
|
||
|
break;
|
||
|
|
||
|
case '}':
|
||
|
this.end(token);
|
||
|
break;
|
||
|
|
||
|
case 'comment':
|
||
|
this.comment(token);
|
||
|
break;
|
||
|
|
||
|
case 'at-word':
|
||
|
this.atrule(token);
|
||
|
break;
|
||
|
|
||
|
case '{':
|
||
|
this.emptyRule(token);
|
||
|
break;
|
||
|
|
||
|
default:
|
||
|
this.other();
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
this.pos += 1;
|
||
|
}
|
||
|
this.endFile();
|
||
|
};
|
||
|
|
||
|
Parser.prototype.comment = function comment(token) {
|
||
|
var node = new _comment2.default();
|
||
|
this.init(node, token[2], token[3]);
|
||
|
node.source.end = { line: token[4], column: token[5] };
|
||
|
|
||
|
var text = token[1].slice(2, -2);
|
||
|
if (/^\s*$/.test(text)) {
|
||
|
node.text = '';
|
||
|
node.raws.left = text;
|
||
|
node.raws.right = '';
|
||
|
} else {
|
||
|
var match = text.match(/^(\s*)([^]*[^\s])(\s*)$/);
|
||
|
node.text = match[2];
|
||
|
node.raws.left = match[1];
|
||
|
node.raws.right = match[3];
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Parser.prototype.emptyRule = function emptyRule(token) {
|
||
|
var node = new _rule2.default();
|
||
|
this.init(node, token[2], token[3]);
|
||
|
node.selector = '';
|
||
|
node.raws.between = '';
|
||
|
this.current = node;
|
||
|
};
|
||
|
|
||
|
Parser.prototype.other = function other() {
|
||
|
var token = void 0;
|
||
|
var end = false;
|
||
|
var type = null;
|
||
|
var colon = false;
|
||
|
var bracket = null;
|
||
|
var brackets = [];
|
||
|
|
||
|
var start = this.pos;
|
||
|
while (this.pos < this.tokens.length) {
|
||
|
token = this.tokens[this.pos];
|
||
|
type = token[0];
|
||
|
|
||
|
if (type === '(' || type === '[') {
|
||
|
if (!bracket) bracket = token;
|
||
|
brackets.push(type === '(' ? ')' : ']');
|
||
|
} else if (brackets.length === 0) {
|
||
|
if (type === ';') {
|
||
|
if (colon) {
|
||
|
this.decl(this.tokens.slice(start, this.pos + 1));
|
||
|
return;
|
||
|
} else {
|
||
|
break;
|
||
|
}
|
||
|
} else if (type === '{') {
|
||
|
this.rule(this.tokens.slice(start, this.pos + 1));
|
||
|
return;
|
||
|
} else if (type === '}') {
|
||
|
this.pos -= 1;
|
||
|
end = true;
|
||
|
break;
|
||
|
} else if (type === ':') {
|
||
|
colon = true;
|
||
|
}
|
||
|
} else if (type === brackets[brackets.length - 1]) {
|
||
|
brackets.pop();
|
||
|
if (brackets.length === 0) bracket = null;
|
||
|
}
|
||
|
|
||
|
this.pos += 1;
|
||
|
}
|
||
|
if (this.pos === this.tokens.length) {
|
||
|
this.pos -= 1;
|
||
|
end = true;
|
||
|
}
|
||
|
|
||
|
if (brackets.length > 0) this.unclosedBracket(bracket);
|
||
|
|
||
|
if (end && colon) {
|
||
|
while (this.pos > start) {
|
||
|
token = this.tokens[this.pos][0];
|
||
|
if (token !== 'space' && token !== 'comment') break;
|
||
|
this.pos -= 1;
|
||
|
}
|
||
|
this.decl(this.tokens.slice(start, this.pos + 1));
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
this.unknownWord(start);
|
||
|
};
|
||
|
|
||
|
Parser.prototype.rule = function rule(tokens) {
|
||
|
tokens.pop();
|
||
|
|
||
|
var node = new _rule2.default();
|
||
|
this.init(node, tokens[0][2], tokens[0][3]);
|
||
|
|
||
|
node.raws.between = this.spacesAndCommentsFromEnd(tokens);
|
||
|
this.raw(node, 'selector', tokens);
|
||
|
this.current = node;
|
||
|
};
|
||
|
|
||
|
Parser.prototype.decl = function decl(tokens) {
|
||
|
var node = new _declaration2.default();
|
||
|
this.init(node);
|
||
|
|
||
|
var last = tokens[tokens.length - 1];
|
||
|
if (last[0] === ';') {
|
||
|
this.semicolon = true;
|
||
|
tokens.pop();
|
||
|
}
|
||
|
if (last[4]) {
|
||
|
node.source.end = { line: last[4], column: last[5] };
|
||
|
} else {
|
||
|
node.source.end = { line: last[2], column: last[3] };
|
||
|
}
|
||
|
|
||
|
while (tokens[0][0] !== 'word') {
|
||
|
node.raws.before += tokens.shift()[1];
|
||
|
}
|
||
|
node.source.start = { line: tokens[0][2], column: tokens[0][3] };
|
||
|
|
||
|
node.prop = '';
|
||
|
while (tokens.length) {
|
||
|
var type = tokens[0][0];
|
||
|
if (type === ':' || type === 'space' || type === 'comment') {
|
||
|
break;
|
||
|
}
|
||
|
node.prop += tokens.shift()[1];
|
||
|
}
|
||
|
|
||
|
node.raws.between = '';
|
||
|
|
||
|
var token = void 0;
|
||
|
while (tokens.length) {
|
||
|
token = tokens.shift();
|
||
|
|
||
|
if (token[0] === ':') {
|
||
|
node.raws.between += token[1];
|
||
|
break;
|
||
|
} else {
|
||
|
node.raws.between += token[1];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (node.prop[0] === '_' || node.prop[0] === '*') {
|
||
|
node.raws.before += node.prop[0];
|
||
|
node.prop = node.prop.slice(1);
|
||
|
}
|
||
|
node.raws.between += this.spacesAndCommentsFromStart(tokens);
|
||
|
this.precheckMissedSemicolon(tokens);
|
||
|
|
||
|
for (var i = tokens.length - 1; i > 0; i--) {
|
||
|
token = tokens[i];
|
||
|
if (token[1] === '!important') {
|
||
|
node.important = true;
|
||
|
var string = this.stringFrom(tokens, i);
|
||
|
string = this.spacesFromEnd(tokens) + string;
|
||
|
if (string !== ' !important') node.raws.important = string;
|
||
|
break;
|
||
|
} else if (token[1] === 'important') {
|
||
|
var cache = tokens.slice(0);
|
||
|
var str = '';
|
||
|
for (var j = i; j > 0; j--) {
|
||
|
var _type = cache[j][0];
|
||
|
if (str.trim().indexOf('!') === 0 && _type !== 'space') {
|
||
|
break;
|
||
|
}
|
||
|
str = cache.pop()[1] + str;
|
||
|
}
|
||
|
if (str.trim().indexOf('!') === 0) {
|
||
|
node.important = true;
|
||
|
node.raws.important = str;
|
||
|
tokens = cache;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (token[0] !== 'space' && token[0] !== 'comment') {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
this.raw(node, 'value', tokens);
|
||
|
|
||
|
if (node.value.indexOf(':') !== -1) this.checkMissedSemicolon(tokens);
|
||
|
};
|
||
|
|
||
|
Parser.prototype.atrule = function atrule(token) {
|
||
|
var node = new _atRule2.default();
|
||
|
node.name = token[1].slice(1);
|
||
|
if (node.name === '') {
|
||
|
this.unnamedAtrule(node, token);
|
||
|
}
|
||
|
this.init(node, token[2], token[3]);
|
||
|
|
||
|
var last = false;
|
||
|
var open = false;
|
||
|
var params = [];
|
||
|
|
||
|
this.pos += 1;
|
||
|
while (this.pos < this.tokens.length) {
|
||
|
token = this.tokens[this.pos];
|
||
|
|
||
|
if (token[0] === ';') {
|
||
|
node.source.end = { line: token[2], column: token[3] };
|
||
|
this.semicolon = true;
|
||
|
break;
|
||
|
} else if (token[0] === '{') {
|
||
|
open = true;
|
||
|
break;
|
||
|
} else if (token[0] === '}') {
|
||
|
this.end(token);
|
||
|
break;
|
||
|
} else {
|
||
|
params.push(token);
|
||
|
}
|
||
|
|
||
|
this.pos += 1;
|
||
|
}
|
||
|
if (this.pos === this.tokens.length) {
|
||
|
last = true;
|
||
|
}
|
||
|
|
||
|
node.raws.between = this.spacesAndCommentsFromEnd(params);
|
||
|
if (params.length) {
|
||
|
node.raws.afterName = this.spacesAndCommentsFromStart(params);
|
||
|
this.raw(node, 'params', params);
|
||
|
if (last) {
|
||
|
token = params[params.length - 1];
|
||
|
node.source.end = { line: token[4], column: token[5] };
|
||
|
this.spaces = node.raws.between;
|
||
|
node.raws.between = '';
|
||
|
}
|
||
|
} else {
|
||
|
node.raws.afterName = '';
|
||
|
node.params = '';
|
||
|
}
|
||
|
|
||
|
if (open) {
|
||
|
node.nodes = [];
|
||
|
this.current = node;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Parser.prototype.end = function end(token) {
|
||
|
if (this.current.nodes && this.current.nodes.length) {
|
||
|
this.current.raws.semicolon = this.semicolon;
|
||
|
}
|
||
|
this.semicolon = false;
|
||
|
|
||
|
this.current.raws.after = (this.current.raws.after || '') + this.spaces;
|
||
|
this.spaces = '';
|
||
|
|
||
|
if (this.current.parent) {
|
||
|
this.current.source.end = { line: token[2], column: token[3] };
|
||
|
this.current = this.current.parent;
|
||
|
} else {
|
||
|
this.unexpectedClose(token);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Parser.prototype.endFile = function endFile() {
|
||
|
if (this.current.parent) this.unclosedBlock();
|
||
|
if (this.current.nodes && this.current.nodes.length) {
|
||
|
this.current.raws.semicolon = this.semicolon;
|
||
|
}
|
||
|
this.current.raws.after = (this.current.raws.after || '') + this.spaces;
|
||
|
};
|
||
|
|
||
|
// Helpers
|
||
|
|
||
|
Parser.prototype.init = function init(node, line, column) {
|
||
|
this.current.push(node);
|
||
|
|
||
|
node.source = { start: { line: line, column: column }, input: this.input };
|
||
|
node.raws.before = this.spaces;
|
||
|
this.spaces = '';
|
||
|
if (node.type !== 'comment') this.semicolon = false;
|
||
|
};
|
||
|
|
||
|
Parser.prototype.raw = function raw(node, prop, tokens) {
|
||
|
var token = void 0,
|
||
|
type = void 0;
|
||
|
var length = tokens.length;
|
||
|
var value = '';
|
||
|
var clean = true;
|
||
|
for (var i = 0; i < length; i += 1) {
|
||
|
token = tokens[i];
|
||
|
type = token[0];
|
||
|
if (type === 'comment' || type === 'space' && i === length - 1) {
|
||
|
clean = false;
|
||
|
} else {
|
||
|
value += token[1];
|
||
|
}
|
||
|
}
|
||
|
if (!clean) {
|
||
|
var raw = tokens.reduce(function (all, i) {
|
||
|
return all + i[1];
|
||
|
}, '');
|
||
|
node.raws[prop] = { value: value, raw: raw };
|
||
|
}
|
||
|
node[prop] = value;
|
||
|
};
|
||
|
|
||
|
Parser.prototype.spacesAndCommentsFromEnd = function spacesAndCommentsFromEnd(tokens) {
|
||
|
var lastTokenType = void 0;
|
||
|
var spaces = '';
|
||
|
while (tokens.length) {
|
||
|
lastTokenType = tokens[tokens.length - 1][0];
|
||
|
if (lastTokenType !== 'space' && lastTokenType !== 'comment') break;
|
||
|
spaces = tokens.pop()[1] + spaces;
|
||
|
}
|
||
|
return spaces;
|
||
|
};
|
||
|
|
||
|
Parser.prototype.spacesAndCommentsFromStart = function spacesAndCommentsFromStart(tokens) {
|
||
|
var next = void 0;
|
||
|
var spaces = '';
|
||
|
while (tokens.length) {
|
||
|
next = tokens[0][0];
|
||
|
if (next !== 'space' && next !== 'comment') break;
|
||
|
spaces += tokens.shift()[1];
|
||
|
}
|
||
|
return spaces;
|
||
|
};
|
||
|
|
||
|
Parser.prototype.spacesFromEnd = function spacesFromEnd(tokens) {
|
||
|
var lastTokenType = void 0;
|
||
|
var spaces = '';
|
||
|
while (tokens.length) {
|
||
|
lastTokenType = tokens[tokens.length - 1][0];
|
||
|
if (lastTokenType !== 'space') break;
|
||
|
spaces = tokens.pop()[1] + spaces;
|
||
|
}
|
||
|
return spaces;
|
||
|
};
|
||
|
|
||
|
Parser.prototype.stringFrom = function stringFrom(tokens, from) {
|
||
|
var result = '';
|
||
|
for (var i = from; i < tokens.length; i++) {
|
||
|
result += tokens[i][1];
|
||
|
}
|
||
|
tokens.splice(from, tokens.length - from);
|
||
|
return result;
|
||
|
};
|
||
|
|
||
|
Parser.prototype.colon = function colon(tokens) {
|
||
|
var brackets = 0;
|
||
|
var token = void 0,
|
||
|
type = void 0,
|
||
|
prev = void 0;
|
||
|
for (var i = 0; i < tokens.length; i++) {
|
||
|
token = tokens[i];
|
||
|
type = token[0];
|
||
|
|
||
|
if (type === '(') {
|
||
|
brackets += 1;
|
||
|
} else if (type === ')') {
|
||
|
brackets -= 1;
|
||
|
} else if (brackets === 0 && type === ':') {
|
||
|
if (!prev) {
|
||
|
this.doubleColon(token);
|
||
|
} else if (prev[0] === 'word' && prev[1] === 'progid') {
|
||
|
continue;
|
||
|
} else {
|
||
|
return i;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
prev = token;
|
||
|
}
|
||
|
return false;
|
||
|
};
|
||
|
|
||
|
// Errors
|
||
|
|
||
|
Parser.prototype.unclosedBracket = function unclosedBracket(bracket) {
|
||
|
throw this.input.error('Unclosed bracket', bracket[2], bracket[3]);
|
||
|
};
|
||
|
|
||
|
Parser.prototype.unknownWord = function unknownWord(start) {
|
||
|
var token = this.tokens[start];
|
||
|
throw this.input.error('Unknown word', token[2], token[3]);
|
||
|
};
|
||
|
|
||
|
Parser.prototype.unexpectedClose = function unexpectedClose(token) {
|
||
|
throw this.input.error('Unexpected }', token[2], token[3]);
|
||
|
};
|
||
|
|
||
|
Parser.prototype.unclosedBlock = function unclosedBlock() {
|
||
|
var pos = this.current.source.start;
|
||
|
throw this.input.error('Unclosed block', pos.line, pos.column);
|
||
|
};
|
||
|
|
||
|
Parser.prototype.doubleColon = function doubleColon(token) {
|
||
|
throw this.input.error('Double colon', token[2], token[3]);
|
||
|
};
|
||
|
|
||
|
Parser.prototype.unnamedAtrule = function unnamedAtrule(node, token) {
|
||
|
throw this.input.error('At-rule without name', token[2], token[3]);
|
||
|
};
|
||
|
|
||
|
Parser.prototype.precheckMissedSemicolon = function precheckMissedSemicolon(tokens) {
|
||
|
// Hook for Safe Parser
|
||
|
tokens;
|
||
|
};
|
||
|
|
||
|
Parser.prototype.checkMissedSemicolon = function checkMissedSemicolon(tokens) {
|
||
|
var colon = this.colon(tokens);
|
||
|
if (colon === false) return;
|
||
|
|
||
|
var founded = 0;
|
||
|
var token = void 0;
|
||
|
for (var j = colon - 1; j >= 0; j--) {
|
||
|
token = tokens[j];
|
||
|
if (token[0] !== 'space') {
|
||
|
founded += 1;
|
||
|
if (founded === 2) break;
|
||
|
}
|
||
|
}
|
||
|
throw this.input.error('Missed semicolon', token[2], token[3]);
|
||
|
};
|
||
|
|
||
|
return Parser;
|
||
|
}();
|
||
|
|
||
|
exports.default = Parser;
|
||
|
module.exports = exports['default'];
|
||
|
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInBhcnNlci5lczYiXSwibmFtZXMiOlsiUGFyc2VyIiwiaW5wdXQiLCJwb3MiLCJyb290IiwiY3VycmVudCIsInNwYWNlcyIsInNlbWljb2xvbiIsInNvdXJjZSIsInN0YXJ0IiwibGluZSIsImNvbHVtbiIsInRva2VuaXplIiwidG9rZW5zIiwibG9vcCIsInRva2VuIiwibGVuZ3RoIiwiZW5kIiwiY29tbWVudCIsImF0cnVsZSIsImVtcHR5UnVsZSIsIm90aGVyIiwiZW5kRmlsZSIsIm5vZGUiLCJpbml0IiwidGV4dCIsInNsaWNlIiwidGVzdCIsInJhd3MiLCJsZWZ0IiwicmlnaHQiLCJtYXRjaCIsInNlbGVjdG9yIiwiYmV0d2VlbiIsInR5cGUiLCJjb2xvbiIsImJyYWNrZXQiLCJicmFja2V0cyIsInB1c2giLCJkZWNsIiwicnVsZSIsInBvcCIsInVuY2xvc2VkQnJhY2tldCIsInVua25vd25Xb3JkIiwic3BhY2VzQW5kQ29tbWVudHNGcm9tRW5kIiwicmF3IiwibGFzdCIsImJlZm9yZSIsInNoaWZ0IiwicHJvcCIsInNwYWNlc0FuZENvbW1lbnRzRnJvbVN0YXJ0IiwicHJlY2hlY2tNaXNzZWRTZW1pY29sb24iLCJpIiwiaW1wb3J0YW50Iiwic3RyaW5nIiwic3RyaW5nRnJvbSIsInNwYWNlc0Zyb21FbmQiLCJjYWNoZSIsInN0ciIsImoiLCJ0cmltIiwiaW5kZXhPZiIsInZhbHVlIiwiY2hlY2tNaXNzZWRTZW1pY29sb24iLCJuYW1lIiwidW5uYW1lZEF0cnVsZSIsIm9wZW4iLCJwYXJhbXMiLCJhZnRlck5hbWUiLCJub2RlcyIsImFmdGVyIiwicGFyZW50IiwidW5leHBlY3RlZENsb3NlIiwidW5jbG9zZWRCbG9jayIsImNsZWFuIiwicmVkdWNlIiwiYWxsIiwibGFzdFRva2VuVHlwZSIsIm5leHQiLCJmcm9tIiwicmVzdWx0Iiwic3BsaWNlIiwicHJldiIsImRvdWJsZUNvbG9uIiwiZXJyb3IiLCJmb3VuZGVkIl0sIm1hcHBpbmdzIjoiOzs7O0FB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
|