Coefficient of xᵏ in a constant/linear expr (0 when absent).
(u: Expression, x: string, k: number)
| 3208 | * else null. */ |
| 3209 | function classifyFactor( |
| 3210 | ce: ComputeEngine, |
| 3211 | f: Expression, |
| 3212 | x: string |
| 3213 | ): Factor | null { |
| 3214 | let exp: Expression = ce.One; |
| 3215 | let base = f; |
| 3216 | if (f.operator === 'Power' && f.ops) { |
no test coverage detected