MCPcopy Create free account
hub / github.com/aurelia/binding / constructor

Method constructor

src/ast.js:428–434  ·  view source on GitHub ↗
(operation, left, right)

Source from the content-addressed store, hash-verified

426
427export class Binary extends Expression {
428 constructor(operation, left, right) {
429 super();
430
431 this.operation = operation;
432 this.left = left;
433 this.right = right;
434 }
435
436 evaluate(scope, lookupFunctions) {
437 let left = this.left.evaluate(scope, lookupFunctions);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected