qtil
advanced-security/qtil-swift 0.0.3
Search

Module Impl

Import path

import codeql.swift.elements.decl.internal.VarDeclImpl

Classes

FieldDecl

A field declaration. That is, a variable declaration that is a member of a class, struct, enum or protocol.

VarDecl

A declaration of a variable such as * a local variable in a function: func foo() { var x = 42 // <- let y = "hello" // <- ... } * a member of a struct or class: struct S { var size : Int // <- } * …