Exemplo n.º 1
0
 private void RegisterInfix(TokenType t, InfixParseFn fn) => _infixParseFns.Add(t, fn);
 private void RegisterInfix(TokenType tokenType, InfixParseFn fn)
 {
     _infixParseFn[tokenType] = fn;
 }
Exemplo n.º 3
0
 private void RegisterInfix(TokenType tokenType, InfixParseFn fn)
 {
     _infixParseFns.Add(tokenType, fn);
 }