-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (119 loc) · 5.81 KB
/
Copy pathindex.html
File metadata and controls
138 lines (119 loc) · 5.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Anonymous Artifact — IssueExec</title>
<link rel="stylesheet" href="./assets/style.css" />
<meta name="robots" content="noindex,nofollow" />
</head>
<body>
<main class="container">
<header class="hero">
<div class="badge">Anonymous Artifact Homepage</div>
<h1>IssueExec: A Test-Driven Approach for Localizing Software Engineering Issues</h1>
<p class="subtitle">
This anonymous page provides supplementary materials for double-blind review.
It includes source code, prompts, detailed analyses, and illustrative case studies.
</p>
<p class="note">
This site is published using an <strong>anonymous GitHub account</strong>. No author-identifying information is included
(names, affiliations, emails, tracking scripts, analytics, external fonts, or identifiable external links). All artifacts are anonymized;
identifying metadata is removed where applicable.
</p>
</header>
<section class="card">
<h2>Quick Links</h2>
<div class="grid">
<a class="item" href="https://anonymous.4open.science/r/IssueExec-B218/README.md" aria-label="Browse source code">
<div class="item-title">1) Source Code</div>
<div class="item-desc">Browse the anonymized implementation and scripts.</div>
</a>
<a class="item" href="./prompts/" aria-label="Browse LLM prompts">
<div class="item-title">2) LLM Prompts</div>
<div class="item-desc">All prompts used in IssueExec (by stage) + notes.</div>
</a>
<a class="item" href="./analysis/theoretical_motivation.html" aria-label="Browse theoretical motivation">
<div class="item-title">3) Theoretical Motivation</div>
<div class="item-desc">Preliminary theoretical analysis + illustrations</div>
</a>
<a class="item" href="./analysis/empirical_study.html" aria-label="Browse empirical study">
<div class="item-title">4) Empirical Study</div>
<div class="item-desc">Empirical validation for the premise that tests act as executable requirements.</div>
</a>
<a class="item" href="./case-studies/" aria-label="Browse illustrative case studies">
<div class="item-title">5) Illustrative Case Studies</div>
<div class="item-desc">2 good + 2 bad cases for IssueExec.</div>
</a>
</div>
</section>
<section class="card" id="paper-links">
<h2>Paper Statements ↔ Artifact Pages</h2>
<p class="subtitle" style="margin-top:.25rem;">
Direct links from statements in the paper to the exact supplementary materials on this site.
</p>
<div class="grid">
<a class="item" href="https://anonymous.4open.science/r/IssueExec-B218/README.md" aria-label="Intro statement: source code and materials">
<div class="item-title">§1 Introduction (L124)</div>
<div class="item-desc">
“We will make the source code, prompts, and additional materials available…”
→ Source code & entry README.
</div>
</a>
<a class="item" href="./prompts/" aria-label="Test selection prompt link">
<div class="item-title">§4.3 Relevant Test Retrieval (L450)</div>
<div class="item-desc">
“The detailed prompt used for test selection is provided…”
→ LLM prompts (by stage).
</div>
</a>
<a class="item" href="./case-studies/" aria-label="Examples and cases for edit-location pinpointing">
<div class="item-title">§5.3 RQ2 Issue resolution performance (L597)</div>
<div class="item-desc">
“Detailed examples and cases illustrating this effect will be provided…”
→ Illustrative case studies (2 good + 2 bad).
</div>
</a>
<a class="item" href="./analysis/theoretical_motivation.html" aria-label="Theoretical motivation analysis">
<div class="item-title">Data Availability: Theoretical motivation (L737)</div>
<div class="item-desc">
“Detailed analysis from the theoretical motivation…”
→ Theoretical motivation page.
</div>
</a>
<a class="item" href="./analysis/empirical_study.html" aria-label="Empirical study analysis">
<div class="item-title">Data Availability: Empirical study (L737)</div>
<div class="item-desc">
“Detailed analysis from the empirical study…”
→ Empirical study page.
</div>
</a>
<a class="item" href="./prompts/" aria-label="Data availability prompts">
<div class="item-title">Data Availability: Prompts (L737)</div>
<div class="item-desc">
“LLM prompts…”
→ Prompt collection and notes (by stage).
</div>
</a>
<a class="item" href="https://anonymous.4open.science/r/IssueExec-B218/README.md" aria-label="Data availability code">
<div class="item-title">Data Availability: Source code (L737)</div>
<div class="item-desc">
“The source code of IssueExec…”
→ Code repository README (reproduction entry).
</div>
</a>
<a class="item" href="./case-studies/" aria-label="Data availability case studies">
<div class="item-title">Data Availability: Case studies (L737)</div>
<div class="item-desc">
“Illustrative case studies…”
→ End-to-end localization examples.
</div>
</a>
</div>
</section>
<footer class="footer">
<p>© Anonymous submission — artifact homepage for review only.</p>
</footer>
</main>
</body>
</html>