Package com.google.gwt.dev.jjs.ast

Examples of com.google.gwt.dev.jjs.ast.JParameterRef


        ctx.replaceMe(paramRef);
      }

      @Override
      public void endVisit(JThisRef x, Context ctx) {
        JParameterRef paramRef = new JParameterRef(x.getSourceInfo().makeChild(
            RewriteMethodBody.class, "Reference to devirtualized instance"),
            thisParam);
        ctx.replaceMe(paramRef);
      }
View Full Code Here

TOP

Related Classes of com.google.gwt.dev.jjs.ast.JParameterRef

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.