(expr ast.TableExpr)
| 406 | } |
| 407 | |
| 408 | func nodeLocStart(expr ast.TableExpr) int { |
| 409 | switch e := expr.(type) { |
| 410 | case *ast.TableRef: |
| 411 | return e.Loc.Start |
| 412 | case *ast.JoinClause: |
| 413 | return e.Loc.Start |
| 414 | } |
| 415 | return -1 |
| 416 | } |
| 417 | |
| 418 | func nodeLocEnd(expr ast.TableExpr) int { |
| 419 | switch e := expr.(type) { |
no outgoing calls
no test coverage detected