Assembler.BasicToken.Matches C# (CSharp) Method

Matches() public method

public Matches ( BasicToken template ) : bool
template BasicToken
return bool
        public bool Matches(BasicToken template)
        {
            if (!string.IsNullOrEmpty(template.Value) && Value != template.Value)
                return false;
            return Type == template.Type;
        }