File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ testFiles
7171| hello.py:0:0:0:0 | hello.py |
7272| lib/__init__.py:0:0:0:0 | lib/__init__.py |
7373| new.py:0:0:0:0 | new.py |
74- testCFGNodes
74+ testCfgNodes
7575| greeting.py:0:0:0:0 | Entry node for Module greeting |
7676| greeting.py:0:0:0:0 | Exit node for Module greeting |
7777| greeting.py:1:1:1:17 | ControlFlowNode for from new import * |
@@ -123,7 +123,7 @@ testCFGNodes
123123| new.py:1:5:1:18 | ControlFlowNode for get_new_target |
124124| new.py:2:5:2:15 | ControlFlowNode for Return |
125125| new.py:2:12:2:15 | ControlFlowNode for StringLiteral |
126- testSSAVars
126+ testSsaVars
127127| file://:0:0:0:0 | SSA Variable __name__ |
128128| file://:0:0:0:0 | SSA Variable get_greeting |
129129| file://:0:0:0:0 | SSA Variable print |
Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ query predicate testLocations(Location l) { l.toString().matches("%_src%") }
3131
3232query predicate testFiles ( File f ) { f .toString ( ) .matches ( "%_src%" ) }
3333
34- query predicate testCFGNodes ( ControlFlowNode n ) {
34+ query predicate testCfgNodes ( ControlFlowNode n ) {
3535 not exists ( n .getLocation ( ) )
3636 or
3737 n .getLocation ( ) .toString ( ) .matches ( "%_src%" )
3838}
3939
40- query predicate testSSAVars ( SsaVariable var ) {
40+ query predicate testSsaVars ( SsaVariable var ) {
4141 not exists ( var .getLocation ( ) ) and
4242 var .getVariable ( ) .getScope ( ) .getLocation ( ) .toString ( ) .matches ( "%_src%" )
4343 or
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ testFiles
7171| hello.py:0:0:0:0 | hello.py |
7272| lib/__init__.py:0:0:0:0 | lib/__init__.py |
7373| new.py:0:0:0:0 | new.py |
74- testCFGNodes
74+ testCfgNodes
7575| greeting.py:0:0:0:0 | Entry node for Module greeting |
7676| greeting.py:0:0:0:0 | Exit node for Module greeting |
7777| greeting.py:1:1:1:17 | ControlFlowNode for from new import * |
@@ -123,7 +123,7 @@ testCFGNodes
123123| new.py:1:5:1:18 | ControlFlowNode for get_new_target |
124124| new.py:2:5:2:15 | ControlFlowNode for Return |
125125| new.py:2:12:2:15 | ControlFlowNode for StringLiteral |
126- testSSAVars
126+ testSsaVars
127127| file://:0:0:0:0 | SSA Variable __name__ |
128128| file://:0:0:0:0 | SSA Variable get_greeting |
129129| file://:0:0:0:0 | SSA Variable print |
Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ query predicate testLocations(Location l) { l.toString().matches("%_src%") }
3131
3232query predicate testFiles ( File f ) { f .toString ( ) .matches ( "%_src%" ) }
3333
34- query predicate testCFGNodes ( ControlFlowNode n ) {
34+ query predicate testCfgNodes ( ControlFlowNode n ) {
3535 not exists ( n .getLocation ( ) )
3636 or
3737 n .getLocation ( ) .toString ( ) .matches ( "%_src%" )
3838}
3939
40- query predicate testSSAVars ( SsaVariable var ) {
40+ query predicate testSsaVars ( SsaVariable var ) {
4141 not exists ( var .getLocation ( ) ) and
4242 var .getVariable ( ) .getScope ( ) .getLocation ( ) .toString ( ) .matches ( "%_src%" )
4343 or
You can’t perform that action at this time.
0 commit comments