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

Irony - .NET Compiler Construction Kit

Rate me:
Please Sign up or sign in to vote.
4.97/5 (86 votes)
4 Jan 2008MIT19 min read 294.2K   3.2K   201  
Introduction to Irony - a new technology of parser/compiler construction for .NET.
#region License
/* **********************************************************************************
 * Copyright (c) Roman Ivantsov
 * This source code is subject to terms and conditions of the MIT License
 * for Irony. A copy of the license can be found in the License.txt file
 * at the root of this distribution. 
 * By using this source code in any fashion, you are agreeing to be bound by the terms of the 
 * MIT License.
 * You must not remove this notice from this software.
 * **********************************************************************************/
#endregion

using System;
using System.Collections.Generic;
using System.Text;

namespace Irony.Compiler {
  public struct ParserStackElement {
    public readonly AstNode Node;
    public readonly ParserState State;
    public readonly SourceLocation Location;
    public ParserStackElement(AstNode node,  SourceLocation location, ParserState state) {
      Node = node;
      Location = location;
      State = state;
    }
    public override string ToString() {
      return State.Name + " " + Node.ToString();
    }
  }


  public class ParserStack  {
    private ParserStackElement[] _data = new ParserStackElement[100]; 
    
    public int Count  {
      get {return _count;}
    } int  _count; //actual count of elements currently in stack

    public ParserStackElement this[int index] {
      get { return _data[index]; }
    }
    public void Push(AstNode node, SourceLocation location, ParserState state) {
      if (_count == _data.Length) 
        ExtendData();
      _data[_count] = new ParserStackElement(node, location, state);
      _count++;
    }
    public void Pop(int popCount) {
      _count -= popCount;
    }
    public void Reset() {
      _count = 0;
    }
    private void ExtendData() {
      ParserStackElement[] newData = new ParserStackElement[_data.Length + 100];
      Array.Copy(_data, newData, _data.Length);
      _data = newData;
    }
  }//class


}

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 MIT License


Written By
Software Developer (Senior) Microsoft
United States United States
25 years of professional experience. .NET/c#, databases, security.
Currently Senior Security Engineer, Cloud Security, Microsoft

Comments and Discussions