(
public name: string, // such as eq, gt, lt, upper, lower, etc.
public args: Array<BasicExpression>,
)
| 151 | export class Func<T = any> extends BaseExpression<T> { |
| 152 | public type = `func` as const |
| 153 | constructor( |
| 154 | public name: string, // such as eq, gt, lt, upper, lower, etc. |
| 155 | public args: Array<BasicExpression>, |
| 156 | ) { |
| 157 | super() |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | // This is the basic expression type that is used in the majority of expression |
nothing calls this directly
no outgoing calls
no test coverage detected