- l10n
- generating help messages
- different arguments for one command
(like
teleport <playerTo>
ANDteleport <playerFrom> <playerTo>
- context (for command issuer, language settings etc.)
- aliases
- async support
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package spoon.generating.jdt; | |
import org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants; | |
import org.eclipse.jdt.internal.compiler.lookup.ExtraCompilerModifiers; | |
import java.io.FileNotFoundException; | |
import java.io.PrintStream; | |
import java.lang.reflect.Field; | |
import java.lang.reflect.Modifier; | |
import java.util.Arrays; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The first formal parameter of an anonymous constructor of an anonymous class | |
// whose superclass is an inner class (not in a static context) (§15.9.5.1). | |
public class A { | |
class InnerA { | |
} | |
public void m() { | |
new InnerA() {}; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package de.sirywell.aoc2022.java.day02; | |
import jdk.incubator.vector.ByteVector; | |
import jdk.incubator.vector.ShortVector; | |
import jdk.incubator.vector.VectorMask; | |
import jdk.incubator.vector.VectorShuffle; | |
import jdk.incubator.vector.VectorSpecies; | |
import java.io.IOException; | |
import java.nio.charset.StandardCharsets; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; | |
public class RstTableReformatter { | |
public static void main(String[] args) { | |
Table table = parse("Your table here"); | |
System.out.println(print(table)); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.lang.reflect.RecordComponent; | |
import java.lang.reflect.code.analysis.Patterns; | |
import java.lang.reflect.code.Op; | |
import java.lang.reflect.code.Quotable; | |
import java.lang.reflect.code.Quoted; | |
import java.lang.reflect.code.descriptor.MethodDesc; | |
import java.lang.reflect.code.op.CoreOps; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; |