UNPKG

calcium-lang

Version:
8 lines 327 B
import { BinaryOperator, Command, Reference, Syntax, UnaryOperator, } from "./keywords"; export { BinaryOperator, Command, Reference, Syntax, UnaryOperator }; const binOps = new Set(); for (let v of Object.values(BinaryOperator)) { binOps.add(v); } export { binOps as BinaryOperatorsSet }; //# sourceMappingURL=index.js.map