@specs-feup/lara
Version:
A js port of the popular framework for building source-to-source compilers
14 lines • 469 B
TypeScript
import DseValues from "./DseValues.js";
import DseVariant from "./DseVariant.js";
/**
* Associates a variable name to a DseValues.
*/
export default class VariableVariant extends DseVariant {
protected variableNames: string[];
protected dseValues: DseValues;
constructor(variableNames: string | string[], dseValues: DseValues);
getType(): string;
getNames(): string[];
getDseValues(): DseValues;
}
//# sourceMappingURL=VariableVariant.d.ts.map