untangle:ignore
()
| 16 | |
| 17 | //untangle:ignore |
| 18 | func API() World { |
| 19 | world := World{ |
| 20 | Knives: true, |
| 21 | Ingredients: true, |
| 22 | Bowls: false, |
| 23 | Spoons: true, |
| 24 | } |
| 25 | |
| 26 | world.Bowls = true |
| 27 | return world |
| 28 | } |
| 29 | |
| 30 | func Chop() { // want Chop:"example.test/sink.World: Ingredients, Knives" |
| 31 | world := API() |