UNPKG

@specs-feup/lara

Version:

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

10 lines (8 loc) 230 B
export default abstract class Tool { toolName: string; disableWeaving: boolean; constructor(toolName: string, disableWeaving: boolean = false) { this.toolName = toolName; this.disableWeaving = disableWeaving; } }