Returns the value of the specified global variable, or null if not bound. Does not look in the predeclared environment.
(String name)
| 256 | * predeclared environment. |
| 257 | */ |
| 258 | @Nullable |
| 259 | public Object getGlobal(String name) { |
| 260 | Integer i = globalIndex.get(name); |
| 261 | return i != null ? globals[i] : null; |
| 262 | } |
| 263 | |
| 264 | /** |
| 265 | * Sets the value of a global variable based on its index in this module ({@see |