AsExprSyntax

io.joern.swiftsrc2cpg.parser.SwiftNodeSyntax.AsExprSyntax
case class AsExprSyntax(json: Value) extends ExprSyntax

Documentation

The cast of an expressison to a different type.

Examples

dog as Animal
myPet as? Dog
  • Note: This node is only generated after operators are folded using the SwiftOperators library. Beforehand, the parser does not know the precedences of operators and thus represents is by an UnresolvedAsExprSyntax.

Children

  • expression: ExprSyntax
  • asKeyword: as
  • questionOrExclamationMark: (? | !)?
  • type: TypeSyntax

Nowhere contained in

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait ExprSyntax
trait SwiftNode
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def endColumn: Option[Int]

Attributes

Inherited from:
SwiftNode
def endLine: Option[Int]

Attributes

Inherited from:
SwiftNode
def endOffset: Option[Int]

Attributes

Inherited from:
SwiftNode
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def startColumn: Option[Int]

Attributes

Inherited from:
SwiftNode
def startLine: Option[Int]

Attributes

Inherited from:
SwiftNode
def startOffset: Option[Int]

Attributes

Inherited from:
SwiftNode
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
SwiftNode -> Any
Inherited from:
SwiftNode