ember-tooling / tree-sitter-glimmer

A TreeSitter grammar for Glimmer (HBS) templates
https://ember-tooling.github.io/tree-sitter-glimmer/
24 stars 3 forks source link

Add more nested language queries? #126

Open NullVoxPopuli opened 8 months ago

NullVoxPopuli commented 8 months ago

for example:

import { precompileTemplate } from '@ember/template-compilation';

const template = precompileTemplate(`
  {{#if this.model}}
    {{! comment here }}
    Code!
  {{/if}}
`);

export default template;