Closed pixelzoom closed 4 years ago
ComparisonStatementNode.js imports MathSymbols, but doesn't use it everywhere that it should:
35 const GREATER_THAN_STRING = '>'; 36 const LESS_THAN_STRING = '<'; 93 const comparisonOperatorNode = new Text( '>', {
This should be:
35 const GREATER_THAN_STRING = MathSymbols.GREATER_THAN; 36 const LESS_THAN_STRING = MathSymbols.LESS_THAN; 93 const comparisonOperatorNode = new Text( MathSymbols.GREATER_THAN, {
Thanks for the suggestion @pixelzoom, this has now been addressed, closing.
ComparisonStatementNode.js imports MathSymbols, but doesn't use it everywhere that it should:
This should be: