*
* @param output
*/
public void autoAnalyze(String output) {
Output = output; // TODO, temporary measure for pastebin()
AnalysisResult result = analyze(output);
GuiInstance
.append("\n\n")
.append((result.isSilly()) ? "Well, that one was easy."
: "Here's what I think went wrong:").append("\n\n")
.append(result.getMessage()).append("\n");
GuiInstance.fixTextPointer();
}