blob: 1c729fcf1f700bfe755ef783633046d721253a8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var SourceNode = require("source-map").SourceNode;
var SourceMapConsumer = require("source-map").SourceMapConsumer;
function Source() {}
module.exports = Source;
Source.prototype.source = null;
Source.prototype.size = function() {
return this.source().length;
};
Source.prototype.map = function(options) {
return null;
};
Source.prototype.sourceAndMap = function(options) {
return {
source: this.source(),
map: this.map()
};
};
Source.prototype.node = null;
Source.prototype.listNode = null;
Source.prototype.updateHash = function(hash) {
var source = this.source();
hash.update(source || "");
};
|