PackageDescription: InteractiveCompilerDottedNamesPatch


Interactive Compiler Dotted Names Patch

Last published: January 18, 2008 by 'klnsrgn'

Defines 0 Classes
Extends 1 Classes


Patch for the interactive Smalltalk compiler: Find unqualified names in namespaces not visible in the current environment first, before asking the user what to do. If a matching name has been found, expand the selection to a qualified reference.

e.g.

MyNameSpace.MyClass>>foo
^ XMLParser processDocumentString: ''

will be automatically corrected to

MyNameSpace.MyClass>>foo
^ XML.XMLParser processDocumentString: ''