(
expression: AnyParseNode[],
options: Options,
isOrdgroup?: boolean,
)
| 242 | * if there's more than one. Returns a single node instead of an array. |
| 243 | */ |
| 244 | export const buildExpressionRow = function( |
| 245 | expression: AnyParseNode[], |
| 246 | options: Options, |
| 247 | isOrdgroup?: boolean, |
| 248 | ): MathDomNode { |
| 249 | return makeRow(buildExpression(expression, options, isOrdgroup)); |
| 250 | }; |
| 251 | |
| 252 | /** |
| 253 | * Takes a group from the parser and calls the appropriate groupBuilders function |
nothing calls this directly
no test coverage detected