Set an untyped variable in the block namespace. The BlockNameSpace would normally delegate this set to the parent. Typed variables are naturally set locally. This is used in try/catch block argument.
( String name, Object value )
| 83 | This is used in try/catch block argument. |
| 84 | */ |
| 85 | public void setBlockVariable( String name, Object value ) |
| 86 | throws UtilEvalError |
| 87 | { |
| 88 | super.setVariable( name, value, false/*strict?*/, false ); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | We have the variable: either it was declared here with a type, giving |