Sha256: 194ee1afbde0b008369f948bb87c53ff85a307bbd49a4d1d99ee20dc9e9b354b
Contents?: true
Size: 882 Bytes
Versions: 4
Compression:
Stored size: 882 Bytes
Contents
(function() { var SyntaxError, __hasProp = {}.hasOwnProperty, __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; SyntaxError = (function(_super) { __extends(SyntaxError, _super); function SyntaxError(text, source, pos, file) { this.source = source; this.file = file; this.line = pos.line; this.column = pos.column; this.message = "Can't parse CSS: " + text; this.message += " at line " + pos.line + ":" + pos.column; if (this.file) { this.message += " in " + this.file; } } return SyntaxError; })(Error); module.exports = SyntaxError; }).call(this);
Version data entries
4 entries across 2 versions & 1 rubygems