()
| 6145 | throw new python.Error('Not implemented.'); |
| 6146 | } |
| 6147 | parseExactlyOneDeclaration() { |
| 6148 | // const L = this.L; |
| 6149 | const result = this.parseDeclaration(); |
| 6150 | // L.nextIf(TK_NEWLINE); |
| 6151 | // L.expect(TK_EOF); |
| 6152 | return result; |
| 6153 | } |
| 6154 | parseArgument(idx, is_return, kwarg_only) { |
| 6155 | const L = this.L; |
| 6156 | const type_parser = this.type_parser; |
nothing calls this directly
no test coverage detected