Пример #1
0
 public SymbolTextLocator(ISymbolLocator symbolLocator)
 {
     this.symbolLocator = symbolLocator;
 }
Пример #2
0
 public DataTargetBuilder WithSymbolLocator(ISymbolLocator symbolLocator)
 {
     Mock.Setup(target => target.SymbolLocator).Returns(symbolLocator);
     return(this);
 }
 private LinkedTextLocator(ISymbolLocator locator)
     : this(new SymbolTextLocator(locator))
 {
 }