Lines Matching refs:res
20 private string $res; variable in PhpParser\\NodeDumper
62 $this->res = '';
65 return $this->res;
74 $this->res .= $node->getType();
76 $this->res .= $p;
78 $this->res .= '(';
81 $this->res .= "$this->nl " . $key . ': ';
86 $this->res .= $this->dumpFlags($value);
90 $this->res .= $this->dumpIncludeType($value);
95 $this->res .= $this->dumpUseType($value);
103 $this->res .= "$this->nl comments: ";
113 $this->res .= "$this->nl $key: ";
117 $this->res .= $this->dumpIntKind($value);
121 $this->res .= $this->dumpStringKind($value);
125 $this->res .= $this->dumpArrayKind($value);
129 $this->res .= $this->dumpListKind($value);
137 $this->res .= "$this->nl)";
139 $this->res .= 'array(';
141 $this->res .= "$this->nl " . $key . ': ';
144 $this->res .= "$this->nl)";
146 $this->res .= \str_replace("\n", $this->nl, $node->getReformattedText());
148 $this->res .= \str_replace("\n", $this->nl, (string)$node);
150 $this->res .= $node;
152 $this->res .= 'null';
154 $this->res .= 'false';
156 $this->res .= 'true';