@abaplint/transpiler
Version:
14 lines • 517 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SQLArithmeticOperatorTranspiler = void 0;
const chunk_1 = require("../chunk");
class SQLArithmeticOperatorTranspiler {
transpile(node, _traversal) {
const chunk = new chunk_1.Chunk();
const concat = node.concatTokens();
chunk.appendString(concat);
return chunk;
}
}
exports.SQLArithmeticOperatorTranspiler = SQLArithmeticOperatorTranspiler;
//# sourceMappingURL=sql_arithmetic_operator.js.map