parse static method

Location parse(
  1. Map m
)

Implementation

static Location parse(Map m) {
  return new Location(
      m['file'], m['offset'], m['length'], m['startLine'], m['startColumn'],
      endLine: m['endLine'], endColumn: m['endColumn']);
}