mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
43 lines
808 B
JavaScript
43 lines
808 B
JavaScript
var Node = require('./Node');
|
|
|
|
/**
|
|
* @constructor SymbolNode
|
|
* A symbol node can hold and resolve a symbol
|
|
* @param {String} name
|
|
* @param {Scope} scope
|
|
* @extends {Node}
|
|
*/
|
|
function SymbolNode(name, scope) {
|
|
this.name = name;
|
|
this.scope = scope;
|
|
}
|
|
|
|
SymbolNode.prototype = new Node();
|
|
|
|
/**
|
|
* Evaluate the symbol. Throws an error when the symbol is undefined.
|
|
* @return {*} result
|
|
* @override
|
|
*/
|
|
SymbolNode.prototype.eval = function() {
|
|
// return the value of the symbol
|
|
var value = this.scope.get(this.name);
|
|
|
|
if (value === undefined) {
|
|
throw new Error('Undefined symbol ' + this.name);
|
|
}
|
|
|
|
return value;
|
|
};
|
|
|
|
/**
|
|
* Get string representation
|
|
* @return {String} str
|
|
* @override
|
|
*/
|
|
SymbolNode.prototype.toString = function() {
|
|
return this.name;
|
|
};
|
|
|
|
module.exports = SymbolNode;
|