35 lines
702 B
JavaScript
35 lines
702 B
JavaScript
import type Plugin from "./plugin";
|
|
import Store from "../store";
|
|
import File from "./file";
|
|
|
|
export default class PluginPass extends Store {
|
|
constructor(file: File, plugin: Plugin, options: Object = {}) {
|
|
super();
|
|
this.plugin = plugin;
|
|
this.key = plugin.key;
|
|
this.file = file;
|
|
this.opts = options;
|
|
}
|
|
|
|
key: string;
|
|
plugin: Plugin;
|
|
file: File;
|
|
opts: Object;
|
|
|
|
addHelper(...args) {
|
|
return this.file.addHelper(...args);
|
|
}
|
|
|
|
addImport(...args) {
|
|
return this.file.addImport(...args);
|
|
}
|
|
|
|
getModuleName(...args) {
|
|
return this.file.getModuleName(...args);
|
|
}
|
|
|
|
buildCodeFrameError(...args) {
|
|
return this.file.buildCodeFrameError(...args);
|
|
}
|
|
}
|