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
/
ComparisonNode
Comparison
Node
data
class
ComparisonNode
(
val
left
:
ASTNode
,
val
operator
:
String
,
val
right
:
ASTNode
,
val
position
:
Position
)
:
ASTNode
Comparison operation.
Operators: =, !=, <>, <, >, <=, >= Example: age >= 18, status = 'active'
Members
Constructors
Comparison
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