UNPKG

@specs-feup/lara

Version:

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

14 lines 355 B
export default class PrintOnce { static messagesSet = new Set(); static message(message) { if (message === undefined) { return; } if (this.messagesSet.has(message)) { return; } this.messagesSet.add(message); console.log(message); } } //# sourceMappingURL=PrintOnce.js.map