@@ -240,28 +240,28 @@ func generateReproduce(funcs []*provider, invokeF *provider, initF *provider) st
240240 f += "\t \t \t \t " + extraIndent
241241 closeParens := ""
242242 for annotation , active := range map [string ]bool {
243- "NonFinal" : fm .nonFinal ,
244- "Cacheable" : fm .cacheable ,
245- "MustCache" : fm .mustCache ,
246- "Required" : fm .required ,
247- "CallsInner" : fm .callsInner ,
248- "Memoize" : fm .memoize ,
249- "Reorder" : fm .reorder ,
250- "Desired" : fm .desired ,
251- "Shun" : fm .shun ,
252- "NotCacheable" : fm .notCacheable ,
253- "ConsumptionOptional" : fm .consumptionOptional ,
254- "Singleton" : fm .singleton ,
243+ "NonFinal" : fm .nonFinal ,
244+ "Cacheable" : fm .cacheable ,
245+ "MustCache" : fm .mustCache ,
246+ "Required" : fm .required ,
247+ "CallsInner" : fm .callsInner ,
248+ "Memoize" : fm .memoize ,
249+ "Reorder" : fm .reorder ,
250+ "Desired" : fm .desired ,
251+ "Shun" : fm .shun ,
252+ "NotCacheable" : fm .notCacheable ,
253+ "Singleton" : fm .singleton ,
255254 } {
256255 if active {
257256 f += annotation + "("
258257 closeParens += ")"
259258 }
260259 }
261260 for anno , m := range map [string ]map [typeCode ]struct {}{
262- "ShadowingAllowed" : fm .shadowingAllowed ,
263- "Loose" : fm .loose ,
264- "MustConsume" : fm .mustConsume ,
261+ "ShadowingAllowed" : fm .shadowingAllowed ,
262+ "Loose" : fm .loose ,
263+ "MustConsume" : fm .mustConsume ,
264+ "ConsumptionOptional" : fm .consumptionOptional ,
265265 } {
266266 for tc := range m {
267267 f += anno + "[" + tc .String () + "]("
0 commit comments