unset.bsh

来自「用java 编写的源码开放的文本编辑器。有很多有用的特性」· BSH 代码 · 共 16 行

BSH
16
字号
/**	"Undefine" the variable specifed by 'name' (So that it tests == void).	<p>	<em>Note: there will be a better way to do this in the future.  This is 	currently equivalent to doing namespace.setVariable(name, null);</em>*/bsh.help.unset = "usage: unset( name )";void unset( String name ) {	if ( arg == null )		return;	this.caller.namespace.setVariable(name, null);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?