Silverlight Smalltalk
Silver Smalltalk is a revival and re-targeting of my “Vista Smalltalk” project of several years past.
The major changes have involved adapting the code to run with the Silverlight runtime libraries and removing dependencies on the file system (which is not available in a browser environment). There will be a future separate release with an SDK for desktop applications.
Vista Smalltalk used an Antlr generated parser. For Silver Smalltalk, I have adapted a lightweight hand coded parser that I developed for GWT-Smalltalk last year. There are still a few parser issues with characters ($A), literal arrays (#(a b c)), and temporaries within blocks. These will all be cleared up shortly.
SST’s interpreter is modeled after the Squeak VM and uses (mostly) the same bytecodes. There are several bytecodes left out (for example, those for bit operations) because they are not needed in the .Net environment. So far, I have not added any new bytecodes.
My focus for the next several weeks will be creating basic developer tools such as class browsers and object inspectors.