Author: Elliot Levin (elliotlevin@hotmail.com)
 public function __construct($segmentId, IJoinOptionsInterpretation $interpretation, ISourceInterpreter $sourceInterpreter, O\IEvaluationContext $evaluationContext = null)
 {
     parent::__construct($segmentId, $evaluationContext);
     $this->interpretation = $interpretation;
     $this->sourceInterpreter = $sourceInterpreter;
 }
Example #2
0
 public function __construct(IScopeInterpretation $interpretation, O\IEvaluationContext $evaluationContext = null, $idPrefix = 'scope')
 {
     parent::__construct($idPrefix, $evaluationContext);
     $this->interpretation = $interpretation;
 }
Example #3
0
 public function __construct($idPrefix, IScopeInterpreter $scopeInterpreter, O\IEvaluationContext $evaluationContext = null)
 {
     parent::__construct($idPrefix, $evaluationContext);
     $this->scopeInterpreter = $scopeInterpreter;
 }