public TokenEvaluatorResult(SyntaxTreeTokenType currentSyntaxTreeTokenType, TokenType nextExpectedToken)
     : this(currentSyntaxTreeTokenType, nextExpectedToken, null)
 {
 }
 public TokenEvaluatorResult(SyntaxTreeTokenType currentSyntaxTreeTokenType, TokenType nextExpectedToken, AlgorithmObject algorithmObject)
 {
     CurrentSyntaxTreeTokenType = currentSyntaxTreeTokenType;
     NextExpectedToken          = nextExpectedToken;
     AlgorithmObject            = algorithmObject;
 }
 public TokenEvaluatorResult(SyntaxTreeTokenType currentSyntaxTreeTokenType, AlgorithmObject algorithmObject)
     : this(currentSyntaxTreeTokenType, TokenType.Unknow, algorithmObject)
 {
 }