| 22 | #include "textvalue.h" |
| 23 | |
| 24 | ImportModule::ImportModule(Reporter& r) : Module(r,"import") |
| 25 | { |
| 26 | addDeprecated(tr("The import module is depricated please use the import declaration instead.")); |
| 27 | addParameter("file", tr("The name of the file to import.")); |
| 28 | } |
| 29 | |
| 30 | Node* ImportModule::evaluate(const Context& ctx) const |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected