ÿØÿà JFIF H H ÿÛ C GIF89;
| System: Linux srv913213 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 Current Path : /var/www/talentgenesis_admin_backend/node_modules/alce/lib/ast/ |
| Current File : /var/www/talentgenesis_admin_backend/node_modules/alce/lib/ast/expression.js |
var util = require('../util'),
extractRange = util.extractRange;
module.exports = Expression;
function Expression(node, src) {
this.range = node.range;
}
Expression.prototype = {
_leave: function(src) {
this.root.preamble = extractRange(src, [this.range[0], this.root.range[0]]);
this.root.prologue = extractRange(src, [this.root.range[1], this.range[1]]);
this.root._calcIndent(this);
return this.root;
},
_insert: function(value) {
this.root = value;
}
};