1 write to Tokens
Microsoft.TemplateEngine.Core (1)
Operations\Conditional.cs (1)
39
Tokens
= tokenVariants;
15 references to Tokens
Microsoft.TemplateEngine.Core (15)
Operations\Conditional.cs (15)
61
int maxListSize = Math.Max(
Tokens
.IfTokens.Count,
Tokens
.ElseTokens.Count);
62
maxListSize = Math.Max(maxListSize,
Tokens
.ElseIfTokens.Count);
63
maxListSize = Math.Max(maxListSize,
Tokens
.EndIfTokens.Count);
64
maxListSize = Math.Max(maxListSize,
Tokens
.ActionableIfTokens.Count);
65
maxListSize = Math.Max(maxListSize,
Tokens
.ActionableElseTokens.Count);
66
maxListSize = Math.Max(maxListSize,
Tokens
.ActionableElseIfTokens.Count);
82
AddTokensOfTypeToTokenListAndTrie(trie, tokens,
Tokens
.IfTokens, IfTokenBaseIndex, encoding);
83
AddTokensOfTypeToTokenListAndTrie(trie, tokens,
Tokens
.ElseTokens, ElseTokenBaseIndex, encoding);
84
AddTokensOfTypeToTokenListAndTrie(trie, tokens,
Tokens
.ElseIfTokens, ElseIfTokenBaseIndex, encoding);
85
AddTokensOfTypeToTokenListAndTrie(trie, tokens,
Tokens
.EndIfTokens, EndTokenBaseIndex, encoding);
86
AddTokensOfTypeToTokenListAndTrie(trie, tokens,
Tokens
.ActionableIfTokens, IfTokenActionableBaseIndex, encoding);
87
AddTokensOfTypeToTokenListAndTrie(trie, tokens,
Tokens
.ActionableElseTokens, ElseTokenActionableBaseIndex, encoding);
88
AddTokensOfTypeToTokenListAndTrie(trie, tokens,
Tokens
.ActionableElseIfTokens, ElseIfTokenActionableBaseIndex, encoding);
446
foreach (string otherOptionDisableFlag in _implementation._definition.
Tokens
.ActionableOperations)