(expression, name, args)
| 24 | |
| 25 | export class BindingBehavior extends Expression { |
| 26 | constructor(expression, name, args) { |
| 27 | super(); |
| 28 | |
| 29 | this.expression = expression; |
| 30 | this.name = name; |
| 31 | this.args = args; |
| 32 | } |
| 33 | |
| 34 | evaluate(scope, lookupFunctions) { |
| 35 | return this.expression.evaluate(scope, lookupFunctions); |
nothing calls this directly
no outgoing calls
no test coverage detected