* @param token the first token of the sequence of statement
* @return the statements that were parsed, or {@code null} if the tokens do not represent a
* recognizable sequence of statements
*/
public List<Statement> parseStatements(Token token) {
InstrumentationBuilder instrumentation = Instrumentation.builder("dart.engine.Parser.parseStatements");
try {
currentToken = token;
return parseStatementList();
} finally {
instrumentation.log(2); //Record if >= 2ms
}
}