예제 #1
0
파일: Text.cs 프로젝트: imintsystems/Kean
 public bool Equals(Text other)
 {
     return other.NotNull() &&
         this.Value == other.Value;
 }
예제 #2
0
 protected virtual Generic.IEnumerator<Node> Process(Text text)
 {
     yield return text;
 }