Home
last modified time | relevance | path

Searched refs:astNode (Results 1 – 2 of 2) sorted by relevance

/template/strap/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/
H A DOverload.php42 public function visitEnter(Ast\Node $astNode): bool { argument
43 if ($method = $this->getMethodByClass($astNode, 'visitEnter')) {
44 return $method($astNode);
54 public function visit(Ast\Node $astNode): void { argument
55 if ($method = $this->getMethodByClass($astNode)) {
56 $method($astNode);
66 public function visitLeave(Ast\Node $astNode): void { argument
67 if ($method = $this->getMethodByClass($astNode, 'visitLeave')) {
68 $method($astNode);
/template/strap/vendor/carica/phpcss/src/PhpCss/Ast/
H A DVisitor.php21 * @param Node $astNode
23 public function visit(Node $astNode): void; argument
28 * @param Node $astNode
31 public function visitEnter(Node $astNode): bool; argument
36 * @param Node $astNode
38 public function visitLeave(Node $astNode): void; argument