parse static method

ElementDeclaration parse(
  1. Map m
)

Implementation

static ElementDeclaration parse(Map m) {
  return new ElementDeclaration(m['name'], m['kind'], m['fileIndex'],
      m['offset'], m['line'], m['column'], m['codeOffset'], m['codeLength'],
      className: m['className'],
      mixinName: m['mixinName'],
      parameters: m['parameters']);
}