(arg, suffix = "")
| 672 | additional_slots=() |
| 673 | ): |
| 674 | def optref(arg, suffix = ""): |
| 675 | if arg.allow_ref: |
| 676 | return "Option<&$%s_name%s>" % (arg.name, suffix) |
| 677 | else: |
| 678 | return "$%s_name%s" % (arg.name, suffix) |
| 679 | |
| 680 | def ref(arg, suffix = ""): |
| 681 | if arg.allow_ref: |
nothing calls this directly
no outgoing calls
no test coverage detected