xo-interpreter2 stack: support op!= + trial numeric refactor
This commit is contained in:
parent
243ad12869
commit
77c5f625ff
12 changed files with 161 additions and 14 deletions
|
|
@ -30,6 +30,8 @@ namespace xo {
|
|||
|
||||
static obj<AGCObject> cmp_equal(obj<ARuntimeContext> rcx,
|
||||
DFloat * x, DInteger * y);
|
||||
static obj<AGCObject> cmp_notequal(obj<ARuntimeContext> rcx,
|
||||
DFloat * x, DInteger * y);
|
||||
};
|
||||
|
||||
class IntegerFloatOps {
|
||||
|
|
@ -48,6 +50,8 @@ namespace xo {
|
|||
|
||||
static obj<AGCObject> cmp_equal(obj<ARuntimeContext> rcx,
|
||||
DInteger * x, DFloat * y);
|
||||
static obj<AGCObject> cmp_notequal(obj<ARuntimeContext> rcx,
|
||||
DInteger * x, DFloat * y);
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue