php-parser-rs 0.1.3

A handwritten recursive-descent parser for PHP written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
[E015] Error: cannot declare method `foo::bar` abstract, as `foo` class is not abstract
   ,-[code.php:4:28]
   |
 3 | class foo {
   *       ^^^  
   *             
 4 |     abstract function bar();
   *     ^^^^|^^^          ^^^  
   *         `------------------ try removing this `abstract` modifier
   *                            
   *                             
---'