mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
18 lines
377 B
JavaScript
18 lines
377 B
JavaScript
'use strict';
|
|
|
|
function factory (type, config, load, typed) {
|
|
/**
|
|
* @constructor UpdateNode
|
|
*/
|
|
function UpdateNode() {
|
|
// TODO: deprecated since v3. Cleanup some day
|
|
throw new Error('UpdateNode is deprecated. Use AssignmentNode instead.');
|
|
}
|
|
|
|
return UpdateNode;
|
|
}
|
|
|
|
exports.name = 'UpdateNode';
|
|
exports.path = 'expression.node';
|
|
exports.factory = factory;
|