X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FAmbiguous.java;h=394aab6b27482a11aedd0d840df615e608b81e55;hp=56e1af7a53099b30a27c88582c6e6e8faedc2945;hb=1b5d6cf8ab6963d50c168c9daeb7887b45a343ea;hpb=a22c5074e705e3ffcf03e9f9d174aed8ef79fc91 diff --git a/src/edu/berkeley/sbp/Ambiguous.java b/src/edu/berkeley/sbp/Ambiguous.java index 56e1af7..394aab6 100644 --- a/src/edu/berkeley/sbp/Ambiguous.java +++ b/src/edu/berkeley/sbp/Ambiguous.java @@ -6,14 +6,23 @@ import java.io.*; import java.util.*; /** if ambiguity checking is enabled, this exception is thrown to signal that the parse was ambiguous */ -public class Ambiguous extends RuntimeException { +public class Ambiguous extends Exception { public final Forest ambiguity; - public Ambiguous(Forest ambiguity) { this.ambiguity = ambiguity; } + public Ambiguous(Forest ambiguity) { + this.ambiguity = ambiguity; + } public String toString() { + // FEATURE: more legible printout desperately needed StringBuffer sb = new StringBuffer(); - sb.append("unresolved ambiguity "/*"at " + ambiguity.getLocation() + ":"*/); - for(Object result : ambiguity.expand(false)) - sb.append("\n " + result); + sb.append("unresolved ambiguity "); + HashSet hf = new HashSet(); + ambiguity.gather(hf); + HashSet ht = new HashSet(); + ambiguity.expand(ht, hf, new Tree(null, "...", null, false)); + for(Tree result : ht) { + sb.append("\n\n"); + result.toPrettyString(sb); + } return sb.toString(); } }