Interactive compilation for VisualAge for Smalltalk

One of my favorite features of the Cincom VisualWorks IDE is the interactive compiler error handler. When trying to save Smalltalk source that result in compilation errors, the IDE prompts the developer with a menu of suggestions to correct that error. Although the VA compiler can detect these errors obviously, the code browsers merely put the error message in the source.

The application PhilemonToolCompilations has an interactive error handler that implements this behavior for the VisualAge for Smalltalk IDE. Features include:

  • add / remove declaration of temporal variable
  • add instance / class variable
  • insert / remove bracket ")"
  • insert / remove squared bracket "]"
  • rename misspelled classes
  • insert missing statement terminator "."
Early versions of VisualAge did not have a configurable source code formatter. This application also includes one that works together with the error handler. Only a few options are implemented that control the formatting style. Decide about your favorites and evaluate this expression below.
EmmFormatter defaultStyle
    blankLineInComment: true
    ; bracketSpace: true "extra space between brackets"
    ; cascadeAtEnd: true  "means ; at the front"
    ; nakedGuard: true  "means blocks below keyword"
    ; openBracketAtEnd: false
    ; formatComment: false
    ; ignoreBlankLines: false

Recently, this application has been tested with the upcoming version 8 of VisualAge for Smalltalk. I have been using it since version 5.5 so it is pretty stable. The application can be downloaded from VASTGoodies.com and is part of the “Philemon Tools” configuration map.

comments powered by Disqus