Click here to Skip to main content
15,881,882 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.4K   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 OrderLoopNode : AstNode, IJavascriptGenerator
	{

		private StatementListNode StatementList
		{
			get
			{
				return (StatementListNode)ChildNodes[3];
			}
		}

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

		public void GenerateScript(StringBuilder builder)
		{
			// assume array called "items" exists
			builder.AppendLine("for (var __i = 0; __i < items.length; __i++) {");
			builder.AppendLine("var weight = items[__i].weight;");
			builder.AppendLine("var quantity = items[__i].quantity;");
			StatementList.GenerateScript(builder);
			builder.AppendLine("}");
		}

	}
}

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