-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
chapi-domain/src/main/kotlin/chapi/domain/expr/Expression.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package chapi.domain.expr | ||
|
||
import java.util.function.BinaryOperator | ||
import java.util.function.IntBinaryOperator | ||
|
||
class Expression( | ||
var Type: ExpressionType, | ||
var Value: String = "", | ||
var Children: Array<Expression> = arrayOf() | ||
) | ||
|
||
enum class ExpressionType { | ||
Primary, | ||
Infix, | ||
Prefix, | ||
Postfix, | ||
} | ||
|
||
enum class Arithmetics : BinaryOperator<Int>, IntBinaryOperator { | ||
PLUS { | ||
override fun apply(t: Int, u: Int): Int { | ||
return t + u | ||
} | ||
} | ||
; | ||
|
||
override fun applyAsInt(t: Int, u: Int) = apply(t, u) | ||
} |