mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +01:00
e4b837e0c4
The list was getting unweildly. Also improve error message when parsing fails in pretty printer test and extend some tests.
28 lines
375 B
Plaintext
28 lines
375 B
Plaintext
Anonymous classes
|
|
-----
|
|
<?php
|
|
|
|
new class {};
|
|
new class extends A implements B, C {};
|
|
new class($a) extends A {
|
|
private $a;
|
|
public function __construct($a) {
|
|
$this->a = $a;
|
|
}
|
|
};
|
|
-----
|
|
new class
|
|
{
|
|
};
|
|
new class extends A implements B, C
|
|
{
|
|
};
|
|
new class($a) extends A
|
|
{
|
|
private $a;
|
|
public function __construct($a)
|
|
{
|
|
$this->a = $a;
|
|
}
|
|
};
|