Searched refs:message (Results 1 – 5 of 5) sorted by relevance
/PHP-Parser/ |
H A D | phpstan-baseline.neon | 64 message: "#^Unary operation \"~\" on mixed results in an error\\.$#" 89 message: "#^Call to function assert\\(\\) with false will always evaluate to false\\.$#" 94 message: "#^Constant T_PRIVATE_SET not found\\.$#" 99 message: "#^Constant T_PROTECTED_SET not found\\.$#" 104 message: "#^Constant T_PUBLIC_SET not found\\.$#" 109 message: "#^Constant T_PROPERTY_C not found\\.$#" 134 message: "#^Access to an undefined property PhpParser\\\\Node\\:\\:\\$attrGroups\\.$#" 139 message: "#^Access to an undefined property PhpParser\\\\Node\\:\\:\\$name\\.$#" 144 message: "#^Access to an undefined property PhpParser\\\\Node\\:\\:\\$namespacedName\\.$#" 184 message: "#^Unary operation \"\\+\" on string results in an error\\.$#" [all …]
|
/PHP-Parser/lib/PhpParser/ |
H A D | Error.php | 13 * @param string $message Error message 16 public function __construct(string $message, array $attributes = []) { argument 17 $this->rawMessage = $message; 73 * @param string $message Error message 75 public function setRawMessage(string $message): void { argument 76 $this->rawMessage = $message; 165 $this->message = $this->rawMessage; 168 $this->message .= ' on unknown line'; 170 $this->message .= ' on line ' . $this->getStartLine();
|
/PHP-Parser/bin/ |
H A D | php-parse | 60 $message = formatErrorMessage($error, $code, $attributes['with-column-info']); variable 61 fwrite(STDERR, $message . "\n"); 70 $message = formatErrorMessage($error, $code, $attributes['with-column-info']); variable 71 fwrite(STDERR, $message . "\n");
|
/PHP-Parser/doc/component/ |
H A D | Error_handling.markdown | 5 message, an error can also store additional information about the location the error occurred at.
|
/PHP-Parser/test/PhpParser/ |
H A D | NodeTraverserTest.php | 418 public function testInvalidReturn($stmts, $visitor, $message): void { argument 420 $this->expectExceptionMessage($message);
|
Completed in 7 milliseconds