public VariableDeclaratorParser(Lazy <TaggedFunction <PartialFunctionCombined <TypeParsingTag>, ResolvedType, IType> > typeParser, Lazy <TaggedFunction <PartialFunctionCombined <NodeParsingTag>, Expression, IExpression> > expressionParser, IVariablesStorage storage)
 {
     this.typeParser       = typeParser;
     this.expressionParser = expressionParser;
     this.storage          = storage;
 }
 public VariableReferenceParser(IVariablesStorage storage)
 {
     this.storage = storage;
 }