gdb: M2 Scope

 
 15.4.9.8 The Scope Operators '::' and '.'
 .........................................
 
 There are a few subtle differences between the Modula-2 scope operator
 ('.') and the GDB scope operator ('::').  The two have similar syntax:
 
 
      MODULE . ID
      SCOPE :: ID
 
 where SCOPE is the name of a module or a procedure, MODULE the name of a
 module, and ID is any declared identifier within your program, except
 another module.
 
    Using the '::' operator makes GDB search the scope specified by SCOPE
 for the identifier ID.  If it is not found in the specified scope, then
 GDB searches all scopes enclosing the one specified by SCOPE.
 
    Using the '.' operator makes GDB search the current scope for the
 identifier specified by ID that was imported from the definition module
 specified by MODULE.  With this operator, it is an error if the
 identifier ID was not imported from definition module MODULE, or if ID
 is not an identifier in MODULE.