26272829303132
@Override public Node getNode(TextChunk chunk) { String type = chunk.getText().split(" ")[1].trim(); String name = chunk.getText().split(" ")[2].replace(")", "").trim(); return new InjectDeclarationNode(type, name, chunk.getBeginLine()); }
39404142434445
@Override public Node getNode(TextChunk chunk) { String type = chunk.getText().split(" ")[1].trim(); String name = chunk.getText().split(" ")[2].replace(")", "").trim(); return new InjectDeclarationNode(type, name); }