process.tcl

File server/buildpkgs/tcllib/process.tcl from the latest check-in


#! /usr/bin/env tclsh

# create fake interp with "if" defined to take both halves, "package" to determine stuff, and "source"/"set"/"proc" as real -- all other commands noops

set keep {
	source
	set unset
	namespace
	proc
	list
	if
}

set interp [interp create]

$interp eval [list set keep $keep]
$interp eval {
	namespace eval ::teaparty {}
	rename if ::teaparty::if

	proc package args {
	}

	proc if args {
	}
}