+ some slight src tree re-org (moving autogenerated parser to oscript.parser package)
+ ensure java objects, and instances of subclass of javatype always implement certain built-in methods from oscript.data.Value (ie bopInstanceOf, getType, etc.)... this is done to ensure transparent support for java instances and classes.
+ fast-strings. String addition (concat) is now faster than java string addtion, thanks to a slightly more intelligent implementation of the string class.
Also, I uploaded a new file, osp.tar.gz, which is an example of something cool you can do with a plug-in parser. This parser could be used from an interpreter embedded within a java servlet, to implement "ObjectScript Server Pages", which is basically the same idea as java server pages. Because the interpreter already handles parsing & compiling the file only when it has changed more recently than the last time it was parsed, the .osp server automatically handles recompiling the page when it changes.