Exploring Undeclared Variables

UndeclaredVariable LiteralVariable subclass: #UndeclaredVariable instanceVariableNames: '' classVariableNames: '' package: 'Kernel-Variables' are bindings that point to classes or attributes not present in the system.

They can be accessed by inspecting the global variable Undeclared.

Undeclared
  

This page provides a way to further expore undeclared variables.

References to undeclared classes

The list below shows the current undeclared classes.

By selecting a class we can see the places from where it is referenced.

References to undeclared attributes

The list below shows the current undeclared attributes.

Cleanup unreferenced undeclared

3 timesRepeat: [
	Smalltalk garbageCollect.
	Undeclared removeUnreferencedKeys.].