parse static method

Implementation

static RuntimeCompletionExpression parse(Map m) {
  return new RuntimeCompletionExpression(m['offset'], m['length'],
      type: m['type'] == null
          ? null
          : RuntimeCompletionExpressionType.parse(m['type']));
}