(node *ast.Node)
| 835 | } |
| 836 | |
| 837 | func (p *Printer) shouldEmitNestedComments(node *ast.Node) bool { |
| 838 | return p.emitContext.EmitFlags(node)&EFNoNestedComments == 0 |
| 839 | } |
| 840 | |
| 841 | func (p *Printer) shouldEmitDetachedComments(node *ast.Node) bool { |
| 842 | if !ast.IsSourceFile(node) { |