001 /* 002 * JastAddJ is covered by the modified BSD License. You should have received a copy of the 003 * modified BSD license with this compiler. 004 * 005 * Copyright (c) 2011, Jesper Öqvist <jesper.oqvist@cs.lth.se> 006 * All rights reserved. 007 */ 008 009 aspect PrettyPrint { 010 011 /** 012 * Parser debug printout. 013 */ 014 public void ParseName.toString(StringBuffer sb) { 015 sb.append(getID()); 016 } 017 018 019 }