Lines Matching refs:prop
393 foreach ($root->props as $prop) {
394 if ($prop[0] == 'block') {
395 $prop[1]->parent = $parentBlock;
435 foreach ($props as $prop) {
436 $this->compileProp($prop, $block, $out);
579 foreach ($this->sortProps($block->props) as $prop) {
580 $this->compileProp($prop, $block, $out);
616 foreach ($props as $prop) {
617 switch ($prop[0]) {
619 $stack[] = $prop;
622 $stack[] = $prop;
623 if (isset($prop[1][0]) && $prop[1][0] == Constants::VPREFIX) {
632 $prop[] = $id;
633 $stack[] = $prop;
639 $stack[] = $prop;
1011 protected function compileProp($prop, $block, $out) argument
1014 $this->sourceLoc = $prop[-1] ?? -1;
1016 switch ($prop[0]) {
1018 [, $name, $value] = $prop;
1029 [, $child] = $prop;
1034 [, $path, $args, $suffix] = $prop;
1059 $block->parser->throwError("{$prop[1][0]} is undefined", $block->count);
1062 if (strpos($prop[1][0], "$") === 0) {
1109 $out->lines[] = $prop[1];
1112 [, $name, $value] = $prop;
1116 [, $importPath, $importId] = $prop;
1131 [, $importId] = $prop;
1144 $block->parser->throwError("unknown op: $prop[0]\n", $block->count);