mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
10 lines
322 B
JavaScript
10 lines
322 B
JavaScript
let data1 = {{ user_data1 }};
|
|
let data2 = {{{ user_data2 }}};
|
|
if ({{something}}) {}
|
|
foo({{bar}}, {{baz}});
|
|
|
|
{{not_generated_code}} // parse as block
|
|
{{ if (not_generated_code) { } }} // parse as block
|
|
if (1 == 2) {{not_generated_code}} // parse as block
|
|
let string = "{{ not_generated_code }}"; // parse as string literal
|