Skip to content

Commit

Permalink
Merge pull request #269 from ponder-lab/side_effects
Browse files Browse the repository at this point in the history
Check for Python side-effects
  • Loading branch information
khatchad authored Nov 9, 2023
2 parents 9890c66 + a587d2b commit 74f02cf
Show file tree
Hide file tree
Showing 135 changed files with 2,617 additions and 95 deletions.
3 changes: 1 addition & 2 deletions checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@
<module name="OneStatementPerLine"/>
<module name="MultipleVariableDeclarations"/>
<module name="ArrayTypeStyle"/>
<module name="MissingSwitchDefault"/>
<module name="FallThrough"/>
<module name="UpperEll"/>
<module name="ModifierOrder"/>
Expand Down Expand Up @@ -262,7 +261,7 @@
<property name="caseIndent" value="0"/>
<property name="throwsIndent" value="4"/>
<property name="lineWrappingIndentation" value="4"/>
<property name="arrayInitIndent" value="2"/>
<property name="arrayInitIndent" value="16"/>
</module>
<module name="AbbreviationAsWordInName">
<!-- <property name="ignoreFinal" value="false"/> -->
Expand Down
8 changes: 6 additions & 2 deletions edu.cuny.hunter.hybridize.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,18 @@ Require-Bundle: org.eclipse.ltk.core.refactoring;bundle-version="3.12.200",
org.eclipse.core.resources;bundle-version="3.18.0",
org.eclipse.core.runtime;bundle-version="3.26.0",
com.ibm.wala.ide;bundle-version="1.6.2"
Import-Package: com.ibm.wala.cast.ipa.callgraph,
Import-Package: com.google.common.collect,
com.ibm.wala.cast.ipa.callgraph,
com.ibm.wala.cast.ir.ssa,
com.ibm.wala.cast.loader,
com.ibm.wala.cast.python.client;version="0.1.0",
com.ibm.wala.cast.python.ipa.callgraph,
com.ibm.wala.cast.python.ipa.callgraph;version="0.9.0",
com.ibm.wala.cast.python.loader;version="0.1.0",
com.ibm.wala.cast.python.ml.analysis;version="0.1.0",
com.ibm.wala.cast.python.ml.client;version="0.1.0",
com.ibm.wala.cast.python.modref;version="0.11.0",
com.ibm.wala.cast.python.ssa,
com.ibm.wala.cast.python.types,
com.ibm.wala.cast.python.util,
com.ibm.wala.cast.tree,
com.ibm.wala.classLoader,
Expand Down
Loading

0 comments on commit 74f02cf

Please sign in to comment.