Package org.rascalmpl.ast

Examples of org.rascalmpl.ast.Statement$Insert


      return makeBlock(x.getLocation(), mid, exp, tail);
    }

    @Override
    public Statement visitStringMiddleTemplate(Template x) {
      Statement mid = x.getMid().accept(this);
      Statement tmp = x.getTemplate().accept(this);
      Statement tail = x.getTail().accept(this);
      return makeBlock(x.getLocation(), mid, tmp, tail);
    }
View Full Code Here


    }

    @Override
    public Statement visitStringTailMidInterpolated(
        org.rascalmpl.ast.StringTail.MidInterpolated x) {
      Statement mid = x.getMid().accept(this);
      Statement exp = makeIndentingAppend(x.getExpression());
      Statement tail = x.getTail().accept(this);
      return makeBlock(x.getLocation(), mid, exp, tail);
    }
View Full Code Here

    }
   
    @Override
    public Statement visitStringTailMidTemplate(
        org.rascalmpl.ast.StringTail.MidTemplate x) {
      Statement mid = x.getMid().accept(this);
      Statement template = x.getTemplate().accept(this);
      Statement tail = x.getTail().accept(this);
      return makeBlock(x.getLocation(), mid, template, tail);
    }
View Full Code Here

TOP

Related Classes of org.rascalmpl.ast.Statement$Insert

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.