This repository has been archived by the owner on Oct 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Variable
Mattt edited this page Aug 2, 2020
·
9 revisions
A declaration for a property or a top-level variable or constant.
public struct Variable: Declaration, Hashable, Codable
Codable
, CustomStringConvertible
, Declaration
, ExpressibleBySyntax
, Hashable
Creates an instance initialized with the given syntax node.
public init?(_ node: PatternBindingSyntax)
The declaration attributes.
let attributes: [Attribute]
The declaration modifiers.
let modifiers: [Modifier]
The declaration keyword ("let"
or "var"
).
let keyword: String
The name of the property or top-level variable or constant.
let name: String
The type annotation for the declaration, if any.
let typeAnnotation: String?
The initialized value for the declaration, if any.
let initializedValue: String?
The variable or property accessors.
let accessors: [Accessor]
var description: String
Creates and returns variables from a variable declaration,
which may contain one or more pattern bindings,
such as let x: Int = 1, y: Int = 2
.
public static func variables(from node: VariableDeclSyntax) -> [Variable]
Generated at 2020-08-02T12:14:07+0000 using swift-doc 1.0.0-beta.3.
Types
- AssociatedType
- Attribute
- Attribute.Argument
- Class
- ConditionalCompilationBlock
- ConditionalCompilationBlock.Branch
- DeclarationCollector
- Deinitializer
- Enumeration
- Enumeration.Case
- Extension
- Function
- Function.Parameter
- Function.Signature
- GenericParameter
- GenericRequirement
- GenericRequirement.Relation
- Import
- Initializer
- Modifier
- Operator
- Operator.Kind
- PrecedenceGroup
- PrecedenceGroup.Associativity
- PrecedenceGroup.Relation
- Protocol
- Structure
- Subscript
- Typealias
- Variable
- Variable.Accessor
- Variable.Accessor.Kind