two new operators added: '<<' and '>>

This commit is contained in:
2024-04-16 03:54:50 +02:00
parent f45b2c0a88
commit 353d495c50
4 changed files with 73 additions and 3 deletions
+1 -3
View File
@@ -65,9 +65,7 @@ func evalPlus(ctx ExprContext, self *term) (v any, err error) {
func newMinusTerm(tk *Token) (inst *term) {
return &term{
tk: *tk,
// class: classOperator,
// kind: kindUnknown,
tk: *tk,
children: make([]*term, 0, 2),
position: posInfix,
priority: priSum,