Example #1
0
		public LdTokenPattern(string groupName)
		{
			this.childNode = new AnyNode(groupName);
		}
Example #2
0
		void VisitAnyNode(AnyNode anyNode)
		{
			if (!string.IsNullOrEmpty(anyNode.GroupName)) {
				WriteIdentifier(anyNode.GroupName);
				WriteToken(Roles.Colon);
			}
		}
Example #3
0
		void VisitAnyNode(AnyNode anyNode)
		{
			if (!string.IsNullOrEmpty(anyNode.GroupName)) {
				WriteIdentifier(anyNode.GroupName, BoxedTextColor.Text);
				WriteToken(Roles.Colon, BoxedTextColor.Punctuation);
			}
		}