public XamlXmlParser(PhaseParserKit phaseParserKit) { Guard.ThrowIfNull(phaseParserKit, nameof(phaseParserKit)); objectAssembler = phaseParserKit.ObjectAssembler; protoParser = phaseParserKit.ProtoParser; parser = phaseParserKit.Parser; }
public MarkupExtensionsParsingFromProtoToXaml() { sut = new XamlInstructionParser(WiringContext); }
public ParsingTests() { sut = new XamlInstructionParser(WiringContext); protoResources = new ProtoInstructionResources(this); source = new XamlInstructionResources(this); }
public OrderAwareXamlInstructionParser(IXamlInstructionParser parser) { this.parser = parser; }
public PhaseParserKit(IProtoParser protoParser, IXamlInstructionParser parser, IObjectAssembler objectAssembler) { this.protoParser = protoParser; this.parser = parser; this.objectAssembler = objectAssembler; }