(int ch)
| 363 | } |
| 364 | |
| 365 | static private IFn getMacro(int ch){ |
| 366 | if(ch < macros.length) |
| 367 | return macros[ch]; |
| 368 | return null; |
| 369 | } |
| 370 | |
| 371 | static private boolean isMacro(int ch){ |
| 372 | return (ch < macros.length && macros[ch] != null); |
no outgoing calls
no test coverage detected