X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FAmbiguous.java;h=6288f1fd245e3c45cde34ddf48b232cf7a247557;hp=394aab6b27482a11aedd0d840df615e608b81e55;hb=5ae7d4fd7c53dab6df9aae2e42579efabf66f49e;hpb=1b5d6cf8ab6963d50c168c9daeb7887b45a343ea diff --git a/src/edu/berkeley/sbp/Ambiguous.java b/src/edu/berkeley/sbp/Ambiguous.java index 394aab6..6288f1f 100644 --- a/src/edu/berkeley/sbp/Ambiguous.java +++ b/src/edu/berkeley/sbp/Ambiguous.java @@ -7,21 +7,21 @@ import java.util.*; /** if ambiguity checking is enabled, this exception is thrown to signal that the parse was ambiguous */ public class Ambiguous extends Exception { - public final Forest ambiguity; - public Ambiguous(Forest ambiguity) { + public final Forest ambiguity; + private final HashSet> ht; + public Ambiguous(Forest ambiguity, HashSet> ht) { this.ambiguity = ambiguity; + this.ht = ht; } public String toString() { - // FEATURE: more legible printout desperately needed + // FIXME: print the input region that was ambiguously matched StringBuffer sb = new StringBuffer(); - sb.append("unresolved ambiguity "); - HashSet hf = new HashSet(); - ambiguity.gather(hf); - HashSet ht = new HashSet(); - ambiguity.expand(ht, hf, new Tree(null, "...", null, false)); + sb.append("unresolved ambiguity; shared subtrees are shown as \"*\" "); for(Tree result : ht) { - sb.append("\n\n"); - result.toPrettyString(sb); + sb.append("\n possibility: "); + StringBuffer sb2 = new StringBuffer(); + result.toPrettyString(sb2); + sb.append(StringUtil.indent(sb2.toString(), 15)); } return sb.toString(); }