Re: Phix object arrays
- Posted by irv Feb 05, 2021
- 799 views
We must have different copies of pmain.e, or the line # is wrong.
11683 if tid!=0 then 11684 tid = srids[tid] 11685 else 11686 if tN=0 then tN = addUnnamedConstant(Typ,T_integer) end if 11687 tid = tN 11688 end if 11689 PushFactor(tid,true,T_integer) 11690 PushFactor(vN,true,T_integer) 11691 getToken()
Found a likely call a bit earlier:
11654 integer Typ = tokno, 11655 --5/11/2020: 11656 -- tN = addUnnamedConstant(Typ,T_integer) 11657 tN = 0 11658 while true do 11659 getToken() 11660 if toktype!=LETTER or ttidx=T_end then
Is 11656 the right place to insert the fix?