Support for "import ;" Hide details in here as opposed to NameSpace.
()
| 470 | Hide details in here as opposed to NameSpace. |
| 471 | */ |
| 472 | @Override |
| 473 | public void doSuperImport() |
| 474 | throws UtilEvalError |
| 475 | { |
| 476 | // Should we prevent it from happening twice? |
| 477 | |
| 478 | try { |
| 479 | getClassPath().insureInitialized(); |
| 480 | // prime the lookup table |
| 481 | getClassNameByUnqName( "" ) ; |
| 482 | |
| 483 | // always true now |
| 484 | //getClassPath().setNameCompletionIncludeUnqNames(true); |
| 485 | |
| 486 | } catch ( ClassPathException e ) { |
| 487 | throw new UtilEvalError("Error importing classpath "+ e ); |
| 488 | } |
| 489 | |
| 490 | superImport = true; |
| 491 | } |
| 492 | |
| 493 | @Override |
| 494 | protected boolean hasSuperImport() { return superImport; } |
nothing calls this directly
no test coverage detected