2007-08-27から1日間の記事一覧

snippet compiler

粘着snippet。スニペットが否定されるなら、そのコンパイラ作ればいいだけじゃないか。 List<IqConstraint> snippets = new ArrayList<IqConstraint>(); // cast.type = T // cast.expression = a snippets.addAll(Snippet.compile("cast", "($T) ($a)", context.expression())); // over</iqconstraint></iqconstraint>…

Local Variable "Drive"

DependencyでもInjectionでもないのでDriveする。 public static void main(String[] args) { @Drive String a = "drive [a]"; System.out.println(a); @Drive("message") String b = "drive [message]"; System.out.println(b); } @Driveが付いたローカル変…