(String[] args)
| 7778 | } |
| 7779 | |
| 7780 | public static void main(String[] args) { |
| 7781 | Schema current = createSchema(); |
| 7782 | for (int i = 0; i <= 255; ++i) { |
| 7783 | Syntactic.Item.Descriptor desc = current.getDescriptor(i); |
| 7784 | if (desc != null) { |
| 7785 | System.out.println("public static final int " + desc.getMnemonic() + " = " + i + "; // " + desc); |
| 7786 | } |
| 7787 | } |
| 7788 | System.out.println("VERSION: " + current.getMajorVersion() + "." + current.getMinorVersion()); |
| 7789 | } |
| 7790 | } |
nothing calls this directly
no test coverage detected