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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
use super::*;
impl<'a> BodyAnalyzer<'a> {
/// body analysis: walk all function/method bodies in one file, return issues, and
/// write inferred return types back to the codebase.
pub(crate) fn analyze_bodies(
&self,
program: &php_ast::owned::Program,
file: Arc<str>,
source: &str,
source_map: &php_rs_parser::source_map::SourceMap,
) -> (Vec<Issue>, Vec<ResolvedSymbol>) {
let mut all_issues = Vec::new();
let mut all_symbols = Vec::new();
if self.mode == AnalysisMode::Full {
check_duplicate_declarations(
&program.stmts,
&file,
source,
source_map,
&mut all_issues,
);
}
self.analyze_top_level_stmts(
&program.stmts,
&file,
source,
source_map,
&mut all_issues,
&mut all_symbols,
);
// Analyze top-level executable statements in global scope. The
// inference-only sweep only primes function/method return types; top-
// level diagnostics and references are produced by the main sweep.
self.analyze_global_exec(
program,
&file,
source,
source_map,
&mut all_issues,
&mut all_symbols,
);
(all_issues, all_symbols)
}
/// Analyze top-level executable statements in global scope (Full mode
/// only). Extracted from [`Self::analyze_bodies`] so the per-scope
/// tracked query can run it as its own scope.
pub(crate) fn analyze_global_exec(
&self,
program: &php_ast::owned::Program,
file: &Arc<str>,
source: &str,
source_map: &php_rs_parser::source_map::SourceMap,
all_issues: &mut Vec<Issue>,
all_symbols: &mut Vec<ResolvedSymbol>,
) {
use php_ast::owned::StmtKind;
if self.mode != AnalysisMode::Full {
return;
}
use crate::flow_state::FlowState;
use crate::stmt::StatementsAnalyzer;
use mir_issues::IssueBuffer;
let mut ctx = FlowState::new();
let mut buf = IssueBuffer::new();
let mut sa = StatementsAnalyzer::new(
self.db,
file.clone(),
source,
source_map,
&mut buf,
all_symbols,
self.php_version,
self.mode,
);
for stmt in program.stmts.iter() {
match &stmt.kind {
StmtKind::Function(_)
| StmtKind::Class(_)
| StmtKind::Enum(_)
| StmtKind::Interface(_)
| StmtKind::Trait(_)
| StmtKind::Namespace(_)
| StmtKind::Use(_) => {}
// Process Declare so that `declare(strict_types=1)` updates
// ctx.strict_types before later executable stmts are analyzed.
_ => {
sa.analyze_stmt(stmt, &mut ctx);
}
}
}
drop(sa);
crate::diagnostics::emit_unused_variables(&ctx, file, all_issues);
all_issues.extend(buf.into_all_issues());
}
/// Like `analyze_bodies` but also populates `type_envs` with per-scope type environments.
pub(crate) fn analyze_bodies_typed(
&self,
program: &php_ast::owned::Program,
file: Arc<str>,
source: &str,
source_map: &php_rs_parser::source_map::SourceMap,
type_envs: &mut FxHashMap<crate::type_env::ScopeId, crate::type_env::TypeEnv>,
all_symbols: &mut Vec<ResolvedSymbol>,
) -> Vec<Issue> {
use php_ast::owned::StmtKind;
let mut all_issues = Vec::new();
self.analyze_top_level_stmts_typed(
&program.stmts,
&file,
source,
source_map,
&mut all_issues,
type_envs,
all_symbols,
);
// Analyze top-level executable statements in global scope.
{
use crate::flow_state::FlowState;
use crate::stmt::StatementsAnalyzer;
use mir_issues::IssueBuffer;
let mut ctx = FlowState::new();
let mut buf = IssueBuffer::new();
let mut sa = StatementsAnalyzer::new(
self.db,
file.clone(),
source,
source_map,
&mut buf,
all_symbols,
self.php_version,
self.mode,
);
for stmt in program.stmts.iter() {
match &stmt.kind {
StmtKind::Function(_)
| StmtKind::Class(_)
| StmtKind::Enum(_)
| StmtKind::Interface(_)
| StmtKind::Trait(_)
| StmtKind::Namespace(_)
| StmtKind::Use(_) => {}
_ => {
sa.analyze_stmt(stmt, &mut ctx);
}
}
}
drop(sa);
crate::diagnostics::emit_unused_variables(&ctx, &file, &mut all_issues);
all_issues.extend(buf.into_all_issues());
}
all_issues
}
fn analyze_top_level_stmts(
&self,
stmts: &[php_ast::owned::Stmt],
file: &Arc<str>,
source: &str,
source_map: &php_rs_parser::source_map::SourceMap,
all_issues: &mut Vec<Issue>,
all_symbols: &mut Vec<ResolvedSymbol>,
) {
use php_ast::owned::StmtKind;
for stmt in stmts.iter() {
match &stmt.kind {
StmtKind::Function(decl) => {
self.analyze_fn_decl(decl, file, source, source_map, all_issues, all_symbols);
}
StmtKind::Class(decl) => {
self.analyze_class_decl(
decl,
file,
source,
source_map,
all_issues,
all_symbols,
);
}
StmtKind::Enum(decl) => {
self.analyze_enum_decl(decl, file, source, source_map, all_issues, all_symbols);
}
StmtKind::Interface(decl) => {
self.analyze_interface_decl(decl, file, source, source_map, all_issues);
}
StmtKind::Trait(decl) => {
self.analyze_trait_decl(
decl,
file,
source,
source_map,
all_issues,
all_symbols,
);
}
StmtKind::Namespace(ns) => {
if let php_ast::owned::NamespaceBody::Braced(inner) = &ns.body {
self.analyze_top_level_stmts(
&inner.stmts,
file,
source,
source_map,
all_issues,
all_symbols,
);
}
}
StmtKind::Use(use_decl) => {
check_use_decl_casing(use_decl, self.db, file, source, source_map, all_issues);
}
_ => {}
}
}
}
#[allow(clippy::too_many_arguments)]
fn analyze_top_level_stmts_typed(
&self,
stmts: &[php_ast::owned::Stmt],
file: &Arc<str>,
source: &str,
source_map: &php_rs_parser::source_map::SourceMap,
all_issues: &mut Vec<Issue>,
type_envs: &mut rustc_hash::FxHashMap<crate::type_env::ScopeId, crate::type_env::TypeEnv>,
all_symbols: &mut Vec<ResolvedSymbol>,
) {
use php_ast::owned::StmtKind;
for stmt in stmts.iter() {
match &stmt.kind {
StmtKind::Function(decl) => {
self.analyze_fn_decl_typed(
decl,
file,
source,
source_map,
all_issues,
type_envs,
all_symbols,
);
}
StmtKind::Class(decl) => {
self.analyze_class_decl_typed(
decl,
file,
source,
source_map,
all_issues,
type_envs,
all_symbols,
);
}
StmtKind::Enum(decl) => {
self.analyze_enum_decl_typed(
decl,
file,
source,
source_map,
all_issues,
type_envs,
all_symbols,
);
}
StmtKind::Interface(decl) => {
self.analyze_interface_decl(decl, file, source, source_map, all_issues);
}
StmtKind::Trait(decl) => {
self.analyze_trait_decl_typed(
decl,
file,
source,
source_map,
all_issues,
type_envs,
all_symbols,
);
}
StmtKind::Namespace(ns) => {
if let php_ast::owned::NamespaceBody::Braced(inner) = &ns.body {
self.analyze_top_level_stmts_typed(
&inner.stmts,
file,
source,
source_map,
all_issues,
type_envs,
all_symbols,
);
}
}
StmtKind::Use(use_decl) => {
check_use_decl_casing(use_decl, self.db, file, source, source_map, all_issues);
}
_ => {}
}
}
}
}