beyond
Version:
The Full Stack Universal Typescript Framework
44 lines (35 loc) • 1.03 kB
JavaScript
module.exports = class extends global.ProcessorSource {
get dependencies() {
return this.
}
get exports() {
return this.
}
get compiled() {
return this.
}
get code() {
return this.
}
get map() {
return this.
}
get declaration() {
return this.
}
/**
* Compiler source constructor
*
* @param processor {object} The processor object
* @param is {string} Can be 'source' or 'overwrite'
* @param source {object} Optional. If not specified, the source will be hydrated
* @param compiled {any} Optional. If not specified, the compiled information be hydrated
*/
constructor(processor, is, source, compiled) {
super(processor, is, source);
this.
this.
}
}