1 16 19 20 package com.sun.org.apache.xalan.internal.xsltc.compiler; 21 22 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.ClassGenerator; 23 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator; 24 25 29 final class CurrentCall extends FunctionCall { 30 public CurrentCall(QName fname) { 31 super(fname); 32 } 33 34 public void translate(ClassGenerator classGen, MethodGenerator methodGen) { 35 methodGen.getInstructionList().append(methodGen.loadCurrentNode()); 36 } 37 } 38 | Popular Tags |