All files / NCalc FunctionArgs.ts

100% Statements 6/6
100% Branches 0/0
100% Functions 5/5
100% Lines 6/6

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27              40x     7x       7x 7x       274x       40x      
import {Expression} from './Expression';
 
export class FunctionArgs {
    private _result: any;
 
    public HasResult: boolean;
 
    private _parameters: Expression[] = [];
 
    public get Result() {
        return this._result;
    }
 
    public set Result(value: any) {
        this._result = value;
        this.HasResult = true;
    }
 
    public get Parameters(): Expression[] {
        return this._parameters;
    }
 
    public set Parameters(value: Expression[]) {
        this._parameters = value;
    }
}