()
| 6137 | return new torch._C.OperatorName(name, overload_name); |
| 6138 | } |
| 6139 | parseDeclaration() { |
| 6140 | const L = this.L; |
| 6141 | const name = this.parseName(); |
| 6142 | if (L.cur().kind !== '(') { |
| 6143 | return name; |
| 6144 | } |
| 6145 | throw new python.Error('Not implemented.'); |
| 6146 | } |
| 6147 | parseExactlyOneDeclaration() { |
| 6148 | // const L = this.L; |
| 6149 | const result = this.parseDeclaration(); |
no test coverage detected