Lines Matching refs:source
68 this.source = opts.source;
85 let source;
98 source = this.source;
100 if (typeof source == 'string') {
101 src = Rule.getSource(name, pattern, source);
104 src = source(name);
158 createdTask.source = src.split(':').pop();
257 static getSource(name, pattern, source) { argument
268 if (typeof source == 'function') {
269 src = source(name);
272 src = stringReplaceSuffix(name, match[0], source);
280 if (typeof source == 'function') {
281 src = source(name);
284 src = stringReplaceSuffix(name, pattern, source);
293 if (typeof source == 'function') {
294 src = source(name);
298 file = source.replace('%', file);