Skip to content

Commit

Permalink
📚 add research section to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
marodev committed Feb 21, 2022
1 parent c1709c8 commit 5dc2f23
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 2 deletions.
35 changes: 35 additions & 0 deletions docs/research.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Research

**Overview**

[Martin Odermatt](https://github.com/marodev), [Diego Marcilio](https://dvmarcilio.github.io/), and [Carlo A. Furia](https://bugcounting.net/publications.html).
Static Analysis Warnings and Automatic Fixing: A Replication for C# Projects.
In Proceedings of the 29th International Conference on Software Analysis, Evolution and Reengineering (SANER) — Reproducibility Studies and Negative Results track (RENE).


**Abstract**

Static analyzers have become increasingly popular both as developer tools and as subjects of empirical studies. Whereas static analysis tools exist for disparate programming languages, the bulk of the empirical research has focused on the popular Java programming language.
In this paper, we investigate to what extent some known results about using static analyzers for Java change when considering C# — another popular object-oriented language. To this end, we combine two replications of previous Java studies. First, we study which static analysis tools are most widely used among C# developers, and which warnings are more commonly reported by these tools on open-source C# projects. Second, we develop and empirically evaluate EagleRepair: a technique to automatically fix code in response to static analysis warnings; this is a replication of our previous work for Java.
Our replication indicates, among other things, that static code analysis is fairly popular among C# developers too; ReSharper is the most widely used static analyzer for C#; several static analysis rules are commonly violated in both Java and C# projects; automatically generating fixes to static code analysis warnings with good precision is feasible in C#.The EagleRepair tool developed for this research is available as open source.



**Cite**

@InProceedings{OMF-SANER22,
author = {Martin Odermatt and Diego Marcilio and Carlo A. Furia},
title = {Static Analysis Warnings and Automatic Fixing: A Replication for C\# Projects},
booktitle = {Proceedings of the 29th International Conference
on Software Analysis, Evolution and Reengineering (SANER)},
OPTpages = {XX--XX},
year = {2022},
month = {March},
publisher = {IEEE Computer Society},
note = {RENE (Reproducibility Studies and Negative Results) track},
acceptancerate = {43\%}
}

**Download**

The paper can be downloaded [here](https://bugcounting.net/pubs/saner22-eaglerepair.pdf).
6 changes: 4 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
site_name: EagleRepair
copyright: Copyright © 2021 Martin Odermatt
copyright: Copyright © 2022 Martin Odermatt, Diego Marcilio, Carlo A. Furia
repo_url: https://github.com/marodev/EagleRepair
site_url: https://marodev.github.io/EagleRepair
extra:
version: 0.0.30
social:
- icon: fontawesome/brands/github
link: https://github.com/marodev/EagleRepair
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/marodev
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js
- javascripts/config.js
Expand All @@ -17,6 +18,7 @@ markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- admonition
- pymdownx.details

theme:
name: material
Expand Down

0 comments on commit 5dc2f23

Please sign in to comment.