Lines Matching defs:executingPath
47 private ?Path $executingPath;
52 * @param Path|null $executingPath - the source of the markup - may be null (case of webcode)
56 public static function createFromMarkup(string $markup, ?Path $executingPath, ?WikiPath $contextPath): MarkupRenderer
60 if ($executingPath != null) {
61 $markupRenderer->setRequestedExecutingPath($executingPath);
137 $executingPath = null;
138 if (isset($this->executingPath)) {
139 $executingPath = $this->executingPath;
147 $this->instructionsSource = MarkupRenderer::createFromMarkup($this->markupSource, $executingPath, $contextPath)
226 public function setRequestedExecutingPath(?Path $executingPath): MarkupRenderer
228 $this->executingPath = $executingPath;