(filename string)
| 21 | type classParser struct{} |
| 22 | |
| 23 | func (cp *classParser) Parse(filename string) ([]phpClass, error) { |
| 24 | return cp.parse(filename) |
| 25 | } |
| 26 | |
| 27 | func (cp *classParser) parse(filename string) (classes []phpClass, err error) { |
| 28 | fset := token.NewFileSet() |