lib/keyword.js (8 lines of code) (raw):

'use strict'; class Keyword { constructor(lexeme, tag) { this.lexeme = lexeme; this.tag = tag; } } module.exports = Keyword;