blob: ec364bc08ca6798997e3f4dd7b10181c62f14d03 [file] [log] [blame]
"use strict";
// To generate parser.js run the following command in the current directory:
//
// npx jison-gho parser.jison -o parser.js
const parse = require("./parser").parse;
module.exports = function parseCalcExpression(exp) {
return parse(exp);
};