(args, _math, _scope)
| 201 | it('should pass function arguments via scope to rawArgs function', function () { |
| 202 | const math2 = math.create() |
| 203 | const f = function (args, _math, _scope) { |
| 204 | return args[0].compile().evaluate(_scope) |
| 205 | } |
| 206 | f.rawArgs = true |
| 207 | |
| 208 | math2.import({ f }) |
no test coverage detected