Package org.spoofax.terms.io

Examples of org.spoofax.terms.io.InlinePrinter


    Environment.terms.put(filename, aterm);
    FileCommands.writeToFile(filename, atermToString(aterm));
  }
 
  public static String atermToString(IStrategoTerm aterm) {
    InlinePrinter printer = new InlinePrinter();
    aterm.prettyPrint(printer);
    return printer.getString();
  }
View Full Code Here

TOP

Related Classes of org.spoofax.terms.io.InlinePrinter

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.