TIP #276 Version 1.2: Specify and Unify Variable Linking Commands

This is not necessarily the current version of this TIP.


TIP:276
Title:Specify and Unify Variable Linking Commands
Version:$Revision: 1.2 $
Author:Miguel Sofer <msofer at users dot sourceforge dot net>
State:Draft
Type:Project
Tcl-Version:8.5
Vote:Pending
Created:Sunday, 01 October 2006
Keywords:Tcl, global, variable, upvar, namespace upvar

Abstract

The purpose of this TIP is to simplify and clarify the semantics of the commands in Tcl that couple variables in different scopes together.

Rationale

This TIP proposes to specify and document the behaviour of the different variable linking commands in Tcl: global, variable, upvar and namespace upvar.

In particular, as many of these commands were initially designed to be mainly useful from within procedure bodies, the documentation does not specify their behaviour with respect to qualified variable names.

This TIP proposes to specify and document this behaviour, insuring that it is essentially the same in all these commands.

Current Situation

There have been a few bug reports concerning the behaviour of variable linking commands with respect to qualified variable names: 604226, 1274916, 1274918. Some are real bugs, some are just surprising but correct behaviour, some are surprising unspecified behaviour.

Within proc bodies all of these commands create local variables that are linked to original variables elsewhere (the following assumes that local is a non-qualified name):

One undocumented issue is what should happen when local is a qualified name.

Another issue is the behaviour of these commands when invoked outside of procedure bodies:

Proposal

This TIP proposes to unif