We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e6389c commit 8977542Copy full SHA for 8977542
javascript/ql/lib/semmle/javascript/frameworks/Templating.qll
@@ -522,7 +522,9 @@ module Templating {
522
private class MustacheStyleSyntax extends TemplateSyntax {
523
MustacheStyleSyntax() { this = "mustache" }
524
525
- override string getRawInterpolationRegexp() { result = "(?s)\\{\\{\\{(.*?)\\}\\}\\}|\\{\\{&(.*?)\\}\\}" }
+ override string getRawInterpolationRegexp() {
526
+ result = "(?s)\\{\\{\\{(.*?)\\}\\}\\}|\\{\\{&(.*?)\\}\\}"
527
+ }
528
529
override string getEscapingInterpolationRegexp() { result = "(?s)\\{\\{[^{&](.*?)\\}\\}" }
530
0 commit comments