qtil
advanced-security/qtil-swift 0.0.3
Search

Module ThenStmt

This module provides the public class ThenStmt.

Import path

import codeql.swift.elements.stmt.ThenStmt

Imports

Expr

This module provides the public class Expr.

Stmt

This module provides the public class Stmt.

Aliases

ThenStmt

A statement implicitly wrapping values to be used in branches of if/switch expressions. For example in: let rank = switch value { case 0..<0x80: 1 case 0x80..<0x0800: 2 default: 3 } the literal expressions 1, 2 and 3 are wrapped in ThenStmt.