@@ -756,9 +756,7 @@ class FlowSummaryNode extends Node, TFlowSummaryNode {
756
756
* Gets the enclosing callable. For a `FlowSummaryNode` this is always the
757
757
* summarized function this node is part of.
758
758
*/
759
- override Declaration getEnclosingCallable ( ) {
760
- result = this .getSummarizedCallable ( )
761
- }
759
+ override Declaration getEnclosingCallable ( ) { result = this .getSummarizedCallable ( ) }
762
760
763
761
override Location getLocationImpl ( ) { result = this .getSummarizedCallable ( ) .getLocation ( ) }
764
762
@@ -1013,9 +1011,7 @@ private module RawIndirectNodes {
1013
1011
result = this .getOperand ( ) .getDef ( ) .getEnclosingFunction ( )
1014
1012
}
1015
1013
1016
- override Declaration getEnclosingCallable ( ) {
1017
- result = this .getFunction ( )
1018
- }
1014
+ override Declaration getEnclosingCallable ( ) { result = this .getFunction ( ) }
1019
1015
1020
1016
override predicate isGLValue ( ) { this .getOperand ( ) .isGLValue ( ) }
1021
1017
@@ -1059,9 +1055,7 @@ private module RawIndirectNodes {
1059
1055
1060
1056
override Declaration getFunction ( ) { result = this .getInstruction ( ) .getEnclosingFunction ( ) }
1061
1057
1062
- override Declaration getEnclosingCallable ( ) {
1063
- result = this .getFunction ( )
1064
- }
1058
+ override Declaration getEnclosingCallable ( ) { result = this .getFunction ( ) }
1065
1059
1066
1060
override predicate isGLValue ( ) { this .getInstruction ( ) .isGLValue ( ) }
1067
1061
@@ -1977,7 +1971,7 @@ private module Cached {
1977
1971
// through calls to modeled functions, without relying on global dataflow to join
1978
1972
// the dots).
1979
1973
FlowSummaryImpl:: Private:: Steps:: summaryThroughStepValue ( nodeFrom , nodeTo , _)
1980
- }
1974
+ }
1981
1975
1982
1976
private predicate indirectionOperandFlow ( RawIndirectOperand nodeFrom , Node nodeTo ) {
1983
1977
nodeFrom != nodeTo and
@@ -2377,9 +2371,8 @@ class Content extends TContent {
2377
2371
* Gets a string consisting of `n` star characters ("*"), where n >= 0. This is
2378
2372
* used to represent indirection.
2379
2373
*/
2380
- bindingset [ n] string repeatStars ( int n ) {
2381
- result = concat ( int i | i in [ 1 .. n ] | "*" )
2382
- }
2374
+ bindingset [ n]
2375
+ string repeatStars ( int n ) { result = concat ( int i | i in [ 1 .. n ] | "*" ) }
2383
2376
2384
2377
private module ContentStars {
2385
2378
/**
0 commit comments