JS: Autoformat

This commit is contained in:
Asger Feldthaus
2021-03-29 14:52:37 +01:00
parent 3e26236648
commit faf07dac91
2 changed files with 2 additions and 4 deletions

View File

@@ -337,7 +337,7 @@ module SourceNode {
/** INTERNAL. DO NOT USE. */
module Internal {
/** An empty class that some tests are using to enforce that SourceNode is non-recursive. */
abstract class RecursionGuard extends DataFlow::Node {}
abstract class RecursionGuard extends DataFlow::Node { }
}
}

View File

@@ -8,9 +8,7 @@
import javascript
class BadSourceNodeRange extends DataFlow::SourceNode::Internal::RecursionGuard {
BadSourceNodeRange() {
not this instanceof DataFlow::SourceNode::Range
}
BadSourceNodeRange() { not this instanceof DataFlow::SourceNode::Range }
}
select "Success"