(declaration bool)
| 195 | } |
| 196 | |
| 197 | func (self *_parser) parseMaybeAsyncFunction(declaration bool) *ast.FunctionLiteral { |
| 198 | if self.peek() == token.FUNCTION { |
| 199 | idx := self.idx |
| 200 | self.next() |
| 201 | return self.parseFunction(declaration, true, idx) |
| 202 | } |
| 203 | return nil |
| 204 | } |
| 205 | |
| 206 | func (self *_parser) parseFunction(declaration, async bool, start file.Idx) *ast.FunctionLiteral { |
| 207 |
no test coverage detected