UNPKG

@specs-feup/lara

Version:

A js port of the popular framework for building source-to-source compilers

19 lines 590 B
import WeaverDataStore from "./util/WeaverDataStore.js"; /** * Contains configuration-related methods of the weaver. */ export default class WeaverOptions { /** * @returns DataStore with the data of the current weaver */ static getData(): WeaverDataStore; /** * @returns a string with the command-line flags for the current options */ static toCli(): string; /** * @returns {java.util.Set<String>} with the languages supported by the current weaver */ static getSupportedLanguages(): any; } //# sourceMappingURL=WeaverOptions.d.ts.map