Bike.Parser.Parser.ParsePropertyReferenceSuffix C# (CSharp) Method

ParsePropertyReferenceSuffix() public method

public ParsePropertyReferenceSuffix ( ) : PropertyReferenceSuffix
return PropertyReferenceSuffix
        public PropertyReferenceSuffix ParsePropertyReferenceSuffix()
        {
            var suffix = new PropertyReferenceSuffix { Token = Next() };
            Match(TokenType.Dot);
            suffix.Identifier = ParseIdentifier();
            return suffix;
        }