xo-interpreter2 stack: support op!= + trial numeric refactor
This commit is contained in:
parent
788363dd4c
commit
0f17c52ce8
15 changed files with 172 additions and 17 deletions
|
|
@ -48,6 +48,13 @@ namespace xo {
|
|||
return DBoolean::box<AGCObject>(rcx.allocator(), x->value() == y->value());
|
||||
}
|
||||
|
||||
obj<AGCObject>
|
||||
IntegerOps::cmp_notequal(obj<ARuntimeContext> rcx,
|
||||
DInteger * x, DInteger * y)
|
||||
{
|
||||
return DBoolean::box<AGCObject>(rcx.allocator(), x->value() != y->value());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue