()
| 4027 | } |
| 4028 | |
| 4029 | func (p *Parser) nextTokenCanFollowExportModifier() bool { |
| 4030 | p.nextToken() |
| 4031 | return p.canFollowExportModifier() |
| 4032 | } |
| 4033 | |
| 4034 | func (p *Parser) canFollowExportModifier() bool { |
| 4035 | return p.token == ast.KindAtToken || p.token != ast.KindAsteriskToken && p.token != ast.KindAsKeyword && p.token != ast.KindOpenBraceToken && p.canFollowModifier() |
nothing calls this directly
no test coverage detected