Checks whether this module is empty (no classes or statements). An empty module compiles to no bytecode output. @return true if both class list and statement block are empty
()
| 840 | * @return true if both class list and statement block are empty |
| 841 | */ |
| 842 | public boolean isEmpty() { |
| 843 | return classes.isEmpty() && statementBlock.getStatements().isEmpty(); |
| 844 | } |
| 845 | |
| 846 | /** |
| 847 | * Sorts classes in dependency order based on class hierarchy. |
no test coverage detected