Click here to Skip to main content
15,885,876 members
Articles / Programming Languages / C#

Writing your first Domain Specific Language, Part 2 of 2

Rate me:
Please Sign up or sign in to vote.
5.00/5 (26 votes)
3 Sep 2008CPOL12 min read 85.6K   1.1K   75  
A guide to writing a compiler in .NET for beginners, using Irony.
using System;
using System.Text;
using Irony.Compiler;

namespace FreightLanguageCompiler.Nodes
{
	internal class ExpressionNode : AstNode, IJavascriptGenerator
	{

		public ExpressionNode(AstNodeArgs args)
			: base(args)
		{
		}

		public void GenerateScript(StringBuilder builder)
		{
			// different expression types have different number of children
			foreach (var child in ChildNodes)
			{

				IJavascriptGenerator jsChild = child as IJavascriptGenerator;
				if (jsChild != null)
				{
					jsChild.GenerateScript(builder);
				}
				else
				{
					Token token = child as Token;
					if (token != null)
					{
						// Just send the text that the user entered straight to javascript.
						// In most languages, it is not as simple as this (some sort of 
						// transformation from the source to the destination language is needed).
						string expressionAsJavaScript = token.Text;

						// A string (which is an StringLiteral in the grammar) is either a region
						//  or a customer type. To simplify comparisons, strings are converted to
						// lowercase here.
						if (token.Terminal is StringLiteral)
						{
							expressionAsJavaScript = expressionAsJavaScript.ToLower();
						}

						builder.Append(expressionAsJavaScript);
					}
					else
					{
						throw new InvalidOperationException("Was not expected a child of type " + child.GetType().FullName);
					}
				}
			}

		}

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
China China
Daniel has a Bachelor of Science with First Class Honours from the University of Auckland, and has designed and developed software in companies large and small.

Comments and Discussions