(scope: Scope, lookupFunctions: any, args?: any)
| 8 | } |
| 9 | |
| 10 | evaluate(scope: Scope, lookupFunctions: any, args?: any): any { |
| 11 | throw new Error(`Binding expression "${this}" cannot be evaluated.`); |
| 12 | } |
| 13 | |
| 14 | assign(scope: Scope, value: any, lookupFunctions: any): any { |
| 15 | throw new Error(`Binding expression "${this}" cannot be assigned to.`); |
nothing calls this directly
no outgoing calls
no test coverage detected