()
| 4 | |
| 5 | export class Expression { |
| 6 | constructor() { |
| 7 | this.isAssignable = false; |
| 8 | } |
| 9 | |
| 10 | evaluate(scope: Scope, lookupFunctions: any, args?: any): any { |
| 11 | throw new Error(`Binding expression "${this}" cannot be evaluated.`); |
nothing calls this directly
no outgoing calls
no test coverage detected