PicklesDoc.Pickles.ObjectModel.Mapper.MapToLocation C# (CSharp) Method

MapToLocation() public method

public MapToLocation ( Gherkin.Ast location ) : Location
location Gherkin.Ast
return Location
        public Location MapToLocation(G.Location location)
        {
            return location != null ? new Location { Column = location.Column, Line = location.Line } : null;
        }