Documentation
This commit is contained in:
parent
5557772957
commit
70607aaaf4
@ -16,7 +16,7 @@ internal interface IPropertyTag
|
|||||||
public Regex NameMatcher { get; }
|
public Regex NameMatcher { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Determine if the template string starts with <see cref="TemplateTag"/>, and if it does parse the tag to an <see cref="ITagExpression"/>
|
/// Determine if the template string starts with <see cref="TemplateTag"/>, and if it does parse the tag to an <see cref="Expression"/>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="templateString">Template string</param>
|
/// <param name="templateString">Template string</param>
|
||||||
/// <param name="exactName">The <paramref name="templateString"/> substring that was matched.</param>
|
/// <param name="exactName">The <paramref name="templateString"/> substring that was matched.</param>
|
||||||
|
|||||||
@ -104,9 +104,6 @@ public class TemplatePart : IEnumerable<TemplatePart>
|
|||||||
var last = left.LastPart;
|
var last = left.LastPart;
|
||||||
last.next = right;
|
last.next = right;
|
||||||
right.previous = last;
|
right.previous = last;
|
||||||
return left;
|
return left.FirstPart;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TemplatePart operator +(TemplatePart left, TemplatePart right)
|
|
||||||
=> Concatenate(left, right);
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user