parse static method

Implementation

static ElementDeclarationsResult parse(Map m) =>
    new ElementDeclarationsResult(
        new List.from(
            m['declarations'].map((obj) => ElementDeclaration.parse(obj))),
        new List.from(m['files']));