()
| 1473 | } |
| 1474 | |
| 1475 | func (p *Program) LineCount() int { |
| 1476 | var count int |
| 1477 | for _, file := range p.files { |
| 1478 | count += len(file.ECMALineMap()) |
| 1479 | } |
| 1480 | return count |
| 1481 | } |
| 1482 | |
| 1483 | func (p *Program) IdentifierCount() int { |
| 1484 | var count int |
no test coverage detected