|| type == TokenType.IDENTIFIER
|| Keywords.isKeyword(type)) {
// parseMethodDeclaration will consume the '*'.
return parseMethodDeclaration(false);
} else {
SourcePosition start = getTreeStartLocation();
eat(TokenType.STAR);
ParseTree name = parseComputedPropertyName();
ParseTree value = parseFunctionTail(
start, null, false, true, FunctionDeclarationTree.Kind.EXPRESSION);