WalkComputedUserSet walk the relation within the ComputedUserSet for the given entityType.
( entityType string, cu *base.ComputedUserSet, )
| 104 | |
| 105 | // WalkComputedUserSet walk the relation within the ComputedUserSet for the given entityType. |
| 106 | func (w *Walker) WalkComputedUserSet( |
| 107 | entityType string, |
| 108 | cu *base.ComputedUserSet, |
| 109 | ) error { |
| 110 | return w.Walk(entityType, cu.GetRelation()) |
| 111 | } |
| 112 | |
| 113 | // WalkLeaf is a method that walks through the leaf part of the schema |
| 114 | func (w *Walker) WalkLeaf( |
no test coverage detected