Esempio n. 1
0
        public XamlXmlParser(PhaseParserKit phaseParserKit)
        {
            Guard.ThrowIfNull(phaseParserKit, nameof(phaseParserKit));

            objectAssembler = phaseParserKit.ObjectAssembler;
            protoParser = phaseParserKit.ProtoParser;
            parser = phaseParserKit.Parser;
        }
Esempio n. 2
0
        public XamlXmlParser(PhaseParserKit phaseParserKit)
        {
            Guard.ThrowIfNull(phaseParserKit, nameof(phaseParserKit));

            objectAssembler = phaseParserKit.ObjectAssembler;
            protoParser     = phaseParserKit.ProtoParser;
            parser          = phaseParserKit.Parser;
        }
 public MarkupExtensionsParsingFromProtoToXaml()
 {
     sut = new XamlInstructionParser(WiringContext);
 }
Esempio n. 4
0
 public ParsingTests()
 {
     sut = new XamlInstructionParser(WiringContext);
     protoResources = new ProtoInstructionResources(this);
     source = new XamlInstructionResources(this);
 }
 public MarkupExtensionsParsingFromProtoToXaml()
 {
     sut = new XamlInstructionParser(WiringContext);
 }
Esempio n. 6
0
 public OrderAwareXamlInstructionParser(IXamlInstructionParser parser)
 {
     this.parser = parser;
 }
Esempio n. 7
0
 public PhaseParserKit(IProtoParser protoParser, IXamlInstructionParser parser, IObjectAssembler objectAssembler)
 {
     this.protoParser = protoParser;
     this.parser = parser;
     this.objectAssembler = objectAssembler;
 }
 public OrderAwareXamlInstructionParser(IXamlInstructionParser parser)
 {
     this.parser = parser;
 }
Esempio n. 9
0
 public PhaseParserKit(IProtoParser protoParser, IXamlInstructionParser parser, IObjectAssembler objectAssembler)
 {
     this.protoParser     = protoParser;
     this.parser          = parser;
     this.objectAssembler = objectAssembler;
 }
Esempio n. 10
0
 public ParsingTests()
 {
     sut            = new XamlInstructionParser(WiringContext);
     protoResources = new ProtoInstructionResources(this);
     source         = new XamlInstructionResources(this);
 }