Skip to content

Commit 6a030fc

Browse files
Bump wala.version from 1.6.0 to 1.6.10 (#147)
Bumps `wala.version` from 1.6.0 to 1.6.10. Updates `com.ibm.wala:com.ibm.wala.util` from 1.6.0 to 1.6.10 - [Release notes](https://github.com/wala/WALA/releases) - [Commits](wala/WALA@v1.6.0...v1.6.10) Updates `com.ibm.wala:com.ibm.wala.shrike` from 1.6.0 to 1.6.10 - [Release notes](https://github.com/wala/WALA/releases) - [Commits](wala/WALA@v1.6.0...v1.6.10) Updates `com.ibm.wala:com.ibm.wala.core` from 1.6.0 to 1.6.10 - [Release notes](https://github.com/wala/WALA/releases) - [Commits](wala/WALA@v1.6.0...v1.6.10) Updates `com.ibm.wala:com.ibm.wala.cast` from 1.6.0 to 1.6.10 - [Release notes](https://github.com/wala/WALA/releases) - [Commits](wala/WALA@v1.6.0...v1.6.10) Updates `com.ibm.wala:com.ibm.wala.cast.java` from 1.6.0 to 1.6.10 - [Release notes](https://github.com/wala/WALA/releases) - [Commits](wala/WALA@v1.6.0...v1.6.10) --- updated-dependencies: - dependency-name: com.ibm.wala:com.ibm.wala.util dependency-version: 1.6.10 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.ibm.wala:com.ibm.wala.shrike dependency-version: 1.6.10 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.ibm.wala:com.ibm.wala.core dependency-version: 1.6.10 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.ibm.wala:com.ibm.wala.cast dependency-version: 1.6.10 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.ibm.wala:com.ibm.wala.cast.java dependency-version: 1.6.10 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8a0f807 commit 6a030fc

File tree

13 files changed

+26
-26
lines changed

13 files changed

+26
-26
lines changed

com.ibm.wala.cast.python.jython3.test/test-source/com/ibm/wala/cast/python/jython3/test/TestAnnotations.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public void testAnnotation1()
3838
PythonSSAPropagationCallGraphBuilder builder = bb.defaultCallGraphBuilder();
3939
CallGraph CG = builder.makeCallGraph(builder.getOptions());
4040

41-
CAstCallGraphUtil.AVOID_DUMP = false;
41+
CAstCallGraphUtil.AVOID_DUMP.set(false);
4242
CAstCallGraphUtil.dumpCG(
4343
(SSAContextInterpreter) builder.getContextInterpreter(), builder.getPointerAnalysis(), CG);
4444

@@ -123,7 +123,7 @@ public void testAnnotation2()
123123
});
124124
});
125125

126-
CAstCallGraphUtil.AVOID_DUMP = false;
126+
CAstCallGraphUtil.AVOID_DUMP.set(false);
127127
CAstCallGraphUtil.dumpCG(
128128
(SSAContextInterpreter) builder.getContextInterpreter(), builder.getPointerAnalysis(), CG);
129129

com.ibm.wala.cast.python.ml.test/source/com/ibm/wala/cast/python/ml/test/TestMNISTExamples.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void testEx1Tensors() throws IllegalArgumentException, CancelException, I
5555
checkTensorOps(
5656
Ex1URL,
5757
(PropagationCallGraphBuilder cgBuilder, CallGraph CG, TensorTypeAnalysis result) -> {
58-
CAstCallGraphUtil.AVOID_DUMP = false;
58+
CAstCallGraphUtil.AVOID_DUMP.set(false);
5959
CAstCallGraphUtil.dumpCG(
6060
(SSAContextInterpreter) cgBuilder.getContextInterpreter(),
6161
cgBuilder.getPointerAnalysis(),
@@ -89,7 +89,7 @@ public void testEx2Tensors() throws IllegalArgumentException, CancelException, I
8989
checkTensorOps(
9090
Ex2URL,
9191
(PropagationCallGraphBuilder cgBuilder, CallGraph CG, TensorTypeAnalysis result) -> {
92-
CAstCallGraphUtil.AVOID_DUMP = false;
92+
CAstCallGraphUtil.AVOID_DUMP.set(false);
9393
CAstCallGraphUtil.dumpCG(
9494
(SSAContextInterpreter) cgBuilder.getContextInterpreter(),
9595
cgBuilder.getPointerAnalysis(),

com.ibm.wala.cast.python.ml.test/source/com/ibm/wala/cast/python/ml/test/TestPythonMLCallGraphShape.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public static void main(String[] args)
129129
CallGraphBuilder<? super InstanceKey> builder = E.defaultCallGraphBuilder();
130130
CallGraph CG = builder.makeCallGraph(E.getOptions(), new NullProgressMonitor());
131131

132-
CAstCallGraphUtil.AVOID_DUMP = false;
132+
CAstCallGraphUtil.AVOID_DUMP.set(false);
133133
CAstCallGraphUtil.dumpCG(
134134
((SSAPropagationCallGraphBuilder) builder).getCFAContextInterpreter(),
135135
E.getPointerAnalysis(),

com.ibm.wala.cast.python.ml.test/source/com/ibm/wala/cast/python/ml/test/TestTensorflow2Model.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3393,7 +3393,7 @@ private void test(
33933393
assertNotNull(CG);
33943394

33953395
if (LOGGER.isLoggable(Level.FINE)) {
3396-
CAstCallGraphUtil.AVOID_DUMP = false;
3396+
CAstCallGraphUtil.AVOID_DUMP.set(false);
33973397
CAstCallGraphUtil.dumpCG(
33983398
((SSAPropagationCallGraphBuilder) builder).getCFAContextInterpreter(),
33993399
builder.getPointerAnalysis(),

com.ibm.wala.cast.python.test/source/com/ibm/wala/cast/python/test/TestAssign.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public void testAssign2()
4848
CallGraph CG = B.makeCallGraph(B.getOptions());
4949
verifyGraphAssertions(CG, assertionsAssign2);
5050

51-
CAstCallGraphUtil.AVOID_DUMP = false;
51+
CAstCallGraphUtil.AVOID_DUMP.set(false);
5252
CAstCallGraphUtil.dumpCG(
5353
(SSAContextInterpreter) B.getContextInterpreter(), B.getPointerAnalysis(), CG);
5454
}

com.ibm.wala.cast.python.test/source/com/ibm/wala/cast/python/test/TestCalls.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public Void performAnalysis(PropagationCallGraphBuilder builder) throws CancelEx
158158
PropagationCallGraphBuilder cgBuilder =
159159
(PropagationCallGraphBuilder) e.defaultCallGraphBuilder();
160160
CallGraph CG = cgBuilder.makeCallGraph(cgBuilder.getOptions());
161-
CAstCallGraphUtil.AVOID_DUMP = false;
161+
CAstCallGraphUtil.AVOID_DUMP.set(false);
162162
CAstCallGraphUtil.dumpCG(
163163
(SSAContextInterpreter) cgBuilder.getContextInterpreter(),
164164
cgBuilder.getPointerAnalysis(),
@@ -193,7 +193,7 @@ public Void performAnalysis(PropagationCallGraphBuilder builder) throws CancelEx
193193
PropagationCallGraphBuilder cgBuilder =
194194
(PropagationCallGraphBuilder) e.defaultCallGraphBuilder();
195195
CallGraph CG = cgBuilder.makeCallGraph(cgBuilder.getOptions());
196-
CAstCallGraphUtil.AVOID_DUMP = false;
196+
CAstCallGraphUtil.AVOID_DUMP.set(false);
197197
CAstCallGraphUtil.dumpCG(
198198
(SSAContextInterpreter) cgBuilder.getContextInterpreter(),
199199
cgBuilder.getPointerAnalysis(),
@@ -231,7 +231,7 @@ public Void performAnalysis(PropagationCallGraphBuilder builder) throws CancelEx
231231
PropagationCallGraphBuilder cgBuilder =
232232
(PropagationCallGraphBuilder) e.defaultCallGraphBuilder();
233233
CallGraph CG = cgBuilder.makeCallGraph(cgBuilder.getOptions());
234-
CAstCallGraphUtil.AVOID_DUMP = false;
234+
CAstCallGraphUtil.AVOID_DUMP.set(false);
235235
CAstCallGraphUtil.dumpCG(
236236
(SSAContextInterpreter) cgBuilder.getContextInterpreter(),
237237
cgBuilder.getPointerAnalysis(),
@@ -271,7 +271,7 @@ public Void performAnalysis(PropagationCallGraphBuilder builder) throws CancelEx
271271

272272
CallGraph callGraph = callGraphBuilder.makeCallGraph(callGraphBuilder.getOptions());
273273

274-
CAstCallGraphUtil.AVOID_DUMP = false;
274+
CAstCallGraphUtil.AVOID_DUMP.set(false);
275275
CAstCallGraphUtil.dumpCG(
276276
(SSAContextInterpreter) callGraphBuilder.getContextInterpreter(),
277277
callGraphBuilder.getPointerAnalysis(),
@@ -303,7 +303,7 @@ public void testPytestCalls2()
303303

304304
CallGraph callGraph = callGraphBuilder.makeCallGraph(callGraphBuilder.getOptions());
305305

306-
CAstCallGraphUtil.AVOID_DUMP = false;
306+
CAstCallGraphUtil.AVOID_DUMP.set(false);
307307
CAstCallGraphUtil.dumpCG(
308308
(SSAContextInterpreter) callGraphBuilder.getContextInterpreter(),
309309
callGraphBuilder.getPointerAnalysis(),
@@ -324,7 +324,7 @@ public void testPytestCalls3()
324324
PropagationCallGraphBuilder callGraphBuilder = engine.defaultCallGraphBuilder();
325325
addPytestEntrypoints(callGraphBuilder);
326326
CallGraph callGraph = callGraphBuilder.makeCallGraph(callGraphBuilder.getOptions());
327-
CAstCallGraphUtil.AVOID_DUMP = false;
327+
CAstCallGraphUtil.AVOID_DUMP.set(false);
328328
CAstCallGraphUtil.dumpCG(
329329
(SSAContextInterpreter) callGraphBuilder.getContextInterpreter(),
330330
callGraphBuilder.getPointerAnalysis(),
@@ -350,7 +350,7 @@ public void testClickCalls()
350350
PropagationCallGraphBuilder callGraphBuilder = engine.defaultCallGraphBuilder();
351351
CallGraph callGraph = callGraphBuilder.makeCallGraph(callGraphBuilder.getOptions());
352352

353-
CAstCallGraphUtil.AVOID_DUMP = false;
353+
CAstCallGraphUtil.AVOID_DUMP.set(false);
354354
CAstCallGraphUtil.dumpCG(
355355
(SSAContextInterpreter) callGraphBuilder.getContextInterpreter(),
356356
callGraphBuilder.getPointerAnalysis(),
@@ -379,7 +379,7 @@ public void testAbseilCalls()
379379
PropagationCallGraphBuilder callGraphBuilder = engine.defaultCallGraphBuilder();
380380
CallGraph callGraph = callGraphBuilder.makeCallGraph(callGraphBuilder.getOptions());
381381

382-
CAstCallGraphUtil.AVOID_DUMP = false;
382+
CAstCallGraphUtil.AVOID_DUMP.set(false);
383383
CAstCallGraphUtil.dumpCG(
384384
(SSAContextInterpreter) callGraphBuilder.getContextInterpreter(),
385385
callGraphBuilder.getPointerAnalysis(),

com.ibm.wala.cast.python.test/source/com/ibm/wala/cast/python/test/TestClasses.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public void testClasses3()
114114
(SSAPropagationCallGraphBuilder) engine.defaultCallGraphBuilder();
115115
CallGraph CG = builder.makeCallGraph(builder.getOptions());
116116
System.err.println(CG);
117-
CAstCallGraphUtil.AVOID_DUMP = false;
117+
CAstCallGraphUtil.AVOID_DUMP.set(false);
118118
CAstCallGraphUtil.dumpCG(
119119
(SSAContextInterpreter) builder.getContextInterpreter(), builder.getPointerAnalysis(), CG);
120120
verifyGraphAssertions(CG, assertionsClasses3);

com.ibm.wala.cast.python.test/source/com/ibm/wala/cast/python/test/TestMulti.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public void testMulti1()
3737
PropagationCallGraphBuilder builder =
3838
(PropagationCallGraphBuilder) engine.defaultCallGraphBuilder();
3939
CallGraph CG = builder.makeCallGraph(engine.getOptions(), new NullProgressMonitor());
40-
CAstCallGraphUtil.AVOID_DUMP = false;
40+
CAstCallGraphUtil.AVOID_DUMP.set(false);
4141
CAstCallGraphUtil.dumpCG(
4242
(SSAContextInterpreter) builder.getContextInterpreter(), builder.getPointerAnalysis(), CG);
4343
verifyGraphAssertions(CG, assertionsMulti1);
@@ -59,7 +59,7 @@ public void testMulti2()
5959
PropagationCallGraphBuilder builder =
6060
(PropagationCallGraphBuilder) engine.defaultCallGraphBuilder();
6161
CallGraph CG = builder.makeCallGraph(engine.getOptions(), new NullProgressMonitor());
62-
CAstCallGraphUtil.AVOID_DUMP = false;
62+
CAstCallGraphUtil.AVOID_DUMP.set(false);
6363
CAstCallGraphUtil.dumpCG(
6464
(SSAContextInterpreter) builder.getContextInterpreter(), builder.getPointerAnalysis(), CG);
6565
verifyGraphAssertions(CG, assertionsMulti2);
@@ -79,7 +79,7 @@ public void testMulti3()
7979
PropagationCallGraphBuilder builder =
8080
(PropagationCallGraphBuilder) engine.defaultCallGraphBuilder();
8181
CallGraph CG = builder.makeCallGraph(engine.getOptions(), new NullProgressMonitor());
82-
CAstCallGraphUtil.AVOID_DUMP = false;
82+
CAstCallGraphUtil.AVOID_DUMP.set(false);
8383
CAstCallGraphUtil.dumpCG(
8484
(SSAContextInterpreter) builder.getContextInterpreter(), builder.getPointerAnalysis(), CG);
8585
verifyGraphAssertions(CG, assertionsMulti3);
@@ -99,7 +99,7 @@ public void testMulti4()
9999
PropagationCallGraphBuilder builder =
100100
(PropagationCallGraphBuilder) engine.defaultCallGraphBuilder();
101101
CallGraph CG = builder.makeCallGraph(engine.getOptions(), new NullProgressMonitor());
102-
CAstCallGraphUtil.AVOID_DUMP = false;
102+
CAstCallGraphUtil.AVOID_DUMP.set(false);
103103
CAstCallGraphUtil.dumpCG(
104104
(SSAContextInterpreter) builder.getContextInterpreter(), builder.getPointerAnalysis(), CG);
105105
verifyGraphAssertions(CG, assertionsMulti4);
@@ -119,7 +119,7 @@ public void testMulti5()
119119
PropagationCallGraphBuilder builder =
120120
(PropagationCallGraphBuilder) engine.defaultCallGraphBuilder();
121121
CallGraph CG = builder.makeCallGraph(engine.getOptions(), new NullProgressMonitor());
122-
CAstCallGraphUtil.AVOID_DUMP = false;
122+
CAstCallGraphUtil.AVOID_DUMP.set(false);
123123
CAstCallGraphUtil.dumpCG(
124124
(SSAContextInterpreter) builder.getContextInterpreter(), builder.getPointerAnalysis(), CG);
125125
verifyGraphAssertions(CG, assertionsMulti5);

com.ibm.wala.cast.python.test/source/com/ibm/wala/cast/python/test/TestPrimitives.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public void testSource1()
1919
SSAPropagationCallGraphBuilder builder =
2020
(SSAPropagationCallGraphBuilder) engine.defaultCallGraphBuilder();
2121
CallGraph CG = builder.makeCallGraph(builder.getOptions());
22-
CAstCallGraphUtil.AVOID_DUMP = false;
22+
CAstCallGraphUtil.AVOID_DUMP.set(false);
2323
CAstCallGraphUtil.dumpCG(
2424
(SSAContextInterpreter) builder.getContextInterpreter(), builder.getPointerAnalysis(), CG);
2525
// verifyGraphAssertions(CG, assertionsCalls1);

com.ibm.wala.cast.python.test/source/com/ibm/wala/cast/python/test/TestPythonCallGraphShape.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public static void main(String[] args)
146146
CallGraphBuilder<? super InstanceKey> builder = E.defaultCallGraphBuilder();
147147
CallGraph CG = builder.makeCallGraph(E.getOptions(), new NullProgressMonitor());
148148

149-
CAstCallGraphUtil.AVOID_DUMP = false;
149+
CAstCallGraphUtil.AVOID_DUMP.set(false);
150150
CAstCallGraphUtil.dumpCG(
151151
((SSAPropagationCallGraphBuilder) builder).getCFAContextInterpreter(),
152152
builder.getPointerAnalysis(),

0 commit comments

Comments
 (0)