Previous Lecture Lecture 13 Next Lecture

Lecture 13, Wed 11/09

Information about lab05 deadline, and legacy code progress

Information about lab05 deadline, and legacy code progress

Information about the next two Wednesdays

lab06: some context and high level help

Let’s look at the big picture of lab06:

In particular, this segment of code

  public int tokenizeParseAndEvaluate(final String input)
	   throws TokenizerException, ParserException, EvaluatorException {
   	   return evaluate(parse(tokenize(input)));
  }

Let’s review the big picture:

We can see that in this file: