Re: Fair Criticism, etc
- Posted by Chris Bensler <bensler at telus.net> Aug 14, 2001
- 398 views
Kat wrote: > So you have a full parser, where you un-nest nested function(procedure(var1, > var2), var3, function(var4,var5)) ? Ok, can you compare that sequence > executing natively, to the time it takes to exec in your interpreter? How do > you pre-parse and know the routine_id()s in the program that actually runs > the p-code? You misunderstood. That's my preprocessor, not my script engine. My scripting engine is nowhere near being able to do that yet.. How will I though? I don't think it's possible, at least I don't see how. That's the biggest snag I have to look forward to I think. My plan right now is to just parse everything to p-code. when a scripted routine is called, the appropriate p-code is processed. <snip> > The assignment of the subsequence to a new var isn't bi-directional. I can do > the assign for reading from the "with" var, but changes made to the "with" var > are not made to the original BIG var unless i specifically reassign the "with" > var into it. Which is easy enough to do. I get it now. thanks > "EG"? example, but I understand anyways Chris