BinaryExpression

interface BinaryExpression : OperationExpression

Functions

Link copied to clipboard
abstract fun getResolvedCall(context: ResolutionContext): ResolvedCall?
Link copied to clipboard
abstract fun getVariableDescriptor(context: ResolutionContext): VariableDescriptor?
Link copied to clipboard
abstract fun impl(): Any
Link copied to clipboard
abstract fun lastBlockStatementOrThis(): Expression
Link copied to clipboard
abstract fun location(): CompilerMessageSourceLocation?
Link copied to clipboard
abstract fun parents(): List<Element>
Link copied to clipboard
abstract fun type(context: ResolutionContext): Type?

Properties

Link copied to clipboard
abstract val left: Expression?
Link copied to clipboard
abstract val operationReference: SimpleNameExpression
Link copied to clipboard
abstract val operationToken: String

The token as appears in the source code (+, -, ...)

Link copied to clipboard
abstract val operationTokenRpr: String

One of the codes from org.jetbrains.kotlin.lexer.KtTokens (PLUS, MINUS, ...)

Link copied to clipboard
abstract val psiOrParent: Element
Link copied to clipboard
abstract val right: Expression?
Link copied to clipboard
abstract val text: String