KFeel
Toggle table of contents
v1.0.0
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
KFeel
KFeel
/
ca.acendas.kfeel.parser
/
BinaryOpNode
Binary
Op
Node
data
class
BinaryOpNode
(
val
left
:
ASTNode
,
val
operator
:
String
,
val
right
:
ASTNode
,
val
position
:
Position
)
:
ASTNode
Binary operation.
Operators: +, -, *, /, mod, **, and, or Example: x + y, a * b
Members
Constructors
Binary
Op
Node
Link copied to clipboard
constructor
(
left
:
ASTNode
,
operator
:
String
,
right
:
ASTNode
,
position
:
Position
)
Properties
left
Link copied to clipboard
val
left
:
ASTNode
operator
Link copied to clipboard
val
operator
:
String
position
Link copied to clipboard
open
override
val
position
:
Position
right
Link copied to clipboard
val
right
:
ASTNode