Home | History | Annotate | Download | only in app

Lines Matching full:defaults

26       // operator. In either case, clear the operand and the defaults.
32 // operator and operands used as defaults, or if there is no current
36 var operator = this.operator || this.defaults.operator;
37 var operand = this.operator ? this.operand : this.defaults.operand;
39 var defaults = {operator: operator, operand: this.operand};
40 return this.reset_({accumulator: result, defaults: defaults});
74 this.defaults = {operator: null, operand: null};
90 this.defaults = ifDefined(state && state.defaults, this.defaults);