public ValueParser(ValueNodeParser parse, ValueNodeCondition condition = null)
 {
     this.parse     = parse;
     this.condition = condition ?? (_ => true);
 }
        public void SetUp()
        {
            parser = (value, name) => Object(name, Value("xx", "parsed"));

            converter = new ValueParser(parser);
        }