updating the compiler/reader to handle binops more specially

This commit is contained in:
2025-09-21 17:13:47 +09:00
parent 013dbb9e5c
commit 5819be7fa5
15 changed files with 350 additions and 128 deletions

View File

@ -6,12 +6,12 @@ class Apex {
return (core.basicNew self size)
}
fun[#class] respondsTo(mth) {
return (core.classRespondsTo self mth)
fun[#class] respondsTo(mthname) {
return (core.classRespondsTo self mthname)
}
fun respondsTo(mth) {
return (core.instRespondsTo self mth)
fun respondsTo(mthname) {
return (core.instRespondsTo self mthname)
}
fun primAt(pos) {