public GherkinCodeCompletionWord(GherkinKeyword keyword, IAppSettings appSettings) { this.Keyword = keyword; this.Text = keyword.Text.Trim(); this.AppSettings = appSettings; }
private bool IsThen(Token token) { return(GherkinKeyword.IsStepKeyword(token.MatchedKeyword, token.MatchedGherkinDialect.ThenStepKeywords)); }