@@ -27,6 +27,7 @@ ember-no-implicit-this-codemod no-implicit-this path/of/files/ or/some**/*glob.j
2727* [ handlebars-with-positional-params] ( #handlebars-with-positional-params )
2828* [ handlebars-with-wall-street-syntax] ( #handlebars-with-wall-street-syntax )
2929* [ handlebars-without-params] ( #handlebars-without-params )
30+ * [ has-block] ( #has-block )
3031* [ void-elements] ( #void-elements )
3132<!-- FIXTURES_TOC_END-->
3233
@@ -395,6 +396,34 @@ ember-no-implicit-this-codemod no-implicit-this path/of/files/ or/some**/*glob.j
395396{{namespace/foo}}
396397{{this.someGetter}}
397398
399+ ```
400+ ---
401+ <a id =" has-block " >** has-block** </a >
402+
403+ ** Input** (<small >[ has-block.input.hbs] ( transforms/no-implicit-this/__testfixtures__/has-block.input.hbs ) </small >):
404+ ``` hbs
405+ {{if hasBlock "block"}}
406+ {{#if hasBlock}}block{{/if}}
407+ {{if (has-block) "block"}}
408+ {{#if (has-block)}}block{{/if}}
409+ {{if (has-block "main") "block"}}
410+ {{#if (has-block "main")}}block{{/if}}
411+ {{if (has-block-params "main") "block"}}
412+ {{#if (has-block-params "main")}}block{{/if}}
413+
414+ ```
415+
416+ ** Output** (<small >[ has-block.output.hbs] ( transforms/no-implicit-this/__testfixtures__/has-block.output.hbs ) </small >):
417+ ``` hbs
418+ {{if hasBlock "block"}}
419+ {{#if hasBlock}}block{{/if}}
420+ {{if (has-block) "block"}}
421+ {{#if (has-block)}}block{{/if}}
422+ {{if (has-block "main") "block"}}
423+ {{#if (has-block "main")}}block{{/if}}
424+ {{if (has-block-params "main") "block"}}
425+ {{#if (has-block-params "main")}}block{{/if}}
426+
398427```
399428---
400429<a id =" void-elements " >** void-elements** </a >
0 commit comments