File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
ruby/ql/lib/codeql/ruby/dataflow/internal Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1290,16 +1290,16 @@ private import PostUpdateNodes
1290
1290
1291
1291
/** A node that performs a type cast. */
1292
1292
class CastNode extends Node {
1293
- CastNode ( ) {
1294
- // ensure that all variable assignments are included in the path graph
1295
- this .( SsaDefinitionExtNode ) .getDefinitionExt ( ) instanceof Ssa:: WriteDefinition
1296
- }
1293
+ CastNode ( ) { none ( ) }
1297
1294
}
1298
1295
1299
1296
/**
1300
1297
* Holds if `n` should be a FlowCheckNode, which will appear in path summaries.
1301
1298
*/
1302
- predicate flowCheckNodeSpecific ( Node n ) { none ( ) }
1299
+ predicate flowCheckNodeSpecific ( Node n ) {
1300
+ // ensure that all variable assignments are included in the path graph
1301
+ n .( SsaDefinitionExtNode ) .getDefinitionExt ( ) instanceof Ssa:: WriteDefinition
1302
+ }
1303
1303
1304
1304
class DataFlowExpr = CfgNodes:: ExprCfgNode ;
1305
1305
You can’t perform that action at this time.
0 commit comments