(node ast.Node)
| 647 | } |
| 648 | |
| 649 | func isSimpleType(node ast.Node) bool { |
| 650 | if node == nil { |
| 651 | return false |
| 652 | } |
| 653 | t := node.Type() |
| 654 | if t == nil { |
| 655 | return false |
| 656 | } |
| 657 | return t.PkgPath() == "" |
| 658 | } |
| 659 | |
| 660 | func (c *compiler) ChainNode(node *ast.ChainNode) { |
| 661 | c.chains = append(c.chains, []int{}) |
no test coverage detected
searching dependent graphs…