Files
codeql/swift/extractor
Alex Denisov 423c85377b Swift: skip MacroExpansionExpr/MacroExpansionDecl
They only appear in an intermediate AST and disappear as soon as the
macro is expanded.
The only way to get these in is to construct an "incorrect" AST, e.g.:

```
let x = #does_not_exist() // MacroExpansionExpr
struct S {
  #does_not_exist() // MacroExpansionDecl
}
```
2023-11-15 14:07:45 +01:00
..
2023-03-03 10:26:44 +01:00
2023-11-10 10:20:14 +01:00
2023-11-15 14:07:45 +01:00
2023-06-05 11:12:11 +02:00