(fieldlinker.AsMap from)
| 774 | static public class Subscope implements fieldlinker.AsMap { |
| 775 | protected String prefix; |
| 776 | protected fieldlinker.AsMap delegateTo; |
| 777 | |
| 778 | public Subscope(fieldlinker.AsMap from) { |
| 779 | |
| 780 | this.prefix = Execution.context.get() |
| 781 | .peek().properties.getOrConstruct(IO.id); |
| 782 | this.delegateTo = from; |
| 783 | } |
| 784 |
nothing calls this directly
no test coverage detected