@@ -756,9 +756,7 @@ class FlowSummaryNode extends Node, TFlowSummaryNode {
756756 * Gets the enclosing callable. For a `FlowSummaryNode` this is always the
757757 * summarized function this node is part of.
758758 */
759- override Declaration getEnclosingCallable ( ) {
760- result = this .getSummarizedCallable ( )
761- }
759+ override Declaration getEnclosingCallable ( ) { result = this .getSummarizedCallable ( ) }
762760
763761 override Location getLocationImpl ( ) { result = this .getSummarizedCallable ( ) .getLocation ( ) }
764762
@@ -1013,9 +1011,7 @@ private module RawIndirectNodes {
10131011 result = this .getOperand ( ) .getDef ( ) .getEnclosingFunction ( )
10141012 }
10151013
1016- override Declaration getEnclosingCallable ( ) {
1017- result = this .getFunction ( )
1018- }
1014+ override Declaration getEnclosingCallable ( ) { result = this .getFunction ( ) }
10191015
10201016 override predicate isGLValue ( ) { this .getOperand ( ) .isGLValue ( ) }
10211017
@@ -1059,9 +1055,7 @@ private module RawIndirectNodes {
10591055
10601056 override Declaration getFunction ( ) { result = this .getInstruction ( ) .getEnclosingFunction ( ) }
10611057
1062- override Declaration getEnclosingCallable ( ) {
1063- result = this .getFunction ( )
1064- }
1058+ override Declaration getEnclosingCallable ( ) { result = this .getFunction ( ) }
10651059
10661060 override predicate isGLValue ( ) { this .getInstruction ( ) .isGLValue ( ) }
10671061
@@ -1977,7 +1971,7 @@ private module Cached {
19771971 // through calls to modeled functions, without relying on global dataflow to join
19781972 // the dots).
19791973 FlowSummaryImpl:: Private:: Steps:: summaryThroughStepValue ( nodeFrom , nodeTo , _)
1980- }
1974+ }
19811975
19821976 private predicate indirectionOperandFlow ( RawIndirectOperand nodeFrom , Node nodeTo ) {
19831977 nodeFrom != nodeTo and
@@ -2377,9 +2371,8 @@ class Content extends TContent {
23772371 * Gets a string consisting of `n` star characters ("*"), where n >= 0. This is
23782372 * used to represent indirection.
23792373 */
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 ] | "*" ) }
23832376
23842377private module ContentStars {
23852378 /**
0 commit comments