Files
codeql/ruby/ql/test/library-tests/ast/erb/template.html.erb
2022-06-20 17:04:27 +02:00

39 lines
461 B
Plaintext

<%graphql
fragment Foo on Bar {
some {
queryText
moreProperties
}
}
fragment AnotherFragment on SomethingElse {
other {
things
}
here {
etc
}
}
%>
<%= "hello world" %>
<%#= "this is commented out" %>
<%# "this is also commented out" %>
<% xs = "" %>
<ul>
<% for x in ["foo", "bar", "baz"] do %>
<li><%= xs += x
xs
%></li>
<% end %>
</ul>
<%%>
<%-%>
<%#%>
<%graphql%>
<%=%>