Acquarella.Lexers.Lexer.IsKeyword C# (CSharp) Method

IsKeyword() private method

private IsKeyword ( string name ) : bool
name string
return bool
        private bool IsKeyword(string name)
        {
            if (this.keywords == null)
                return false;

            return this.keywords.Contains(name);
        }