File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
go/ql/lib/semmle/go/dataflow/internal Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -316,13 +316,13 @@ module SourceSinkInterpretationInput implements
316
316
}
317
317
318
318
private DataFlow:: Node skipImplicitFieldReads ( DataFlow:: Node n ) {
319
- not exists ( getImplicitFieldReadInstruction ( n ) ) and result = n
319
+ not exists ( lookThroughImplicitFieldRead ( n ) ) and result = n
320
320
or
321
- result = skipImplicitFieldReads ( getImplicitFieldReadInstruction ( n ) )
321
+ result = skipImplicitFieldReads ( lookThroughImplicitFieldRead ( n ) )
322
322
}
323
323
324
324
pragma [ inline]
325
- private DataFlow:: Node getImplicitFieldReadInstruction ( DataFlow:: Node n ) {
325
+ private DataFlow:: Node lookThroughImplicitFieldRead ( DataFlow:: Node n ) {
326
326
result .asInstruction ( ) =
327
327
n .( DataFlow:: InstructionNode )
328
328
.asInstruction ( )
You can’t perform that action at this time.
0 commit comments