source: trunk/yao/share/antlr-2.7.7/lib/csharp/antlr.runtime/antlr/ASTVisitor.cs @ 1

Last change on this file since 1 was 1, checked in by lnalod, 15 years ago

Initial import of YAO sources

File size: 631 bytes
Line 
1using System;
2
3using AST               = antlr.collections.AST;
4
5namespace antlr
6{
7        /* ANTLR Translator Generator
8         * Project led by Terence Parr at http://www.jGuru.com
9         * Software rights: http://www.antlr.org/license.html
10         *
11         * $Id:$
12         */
13
14        //
15        // ANTLR C# Code Generator by Micheal Jordan
16        //                            Kunle Odutola       : kunle UNDERSCORE odutola AT hotmail DOT com
17        //                            Anthony Oguntimehin
18        //
19        // With many thanks to Eric V. Smith from the ANTLR list.
20        //
21
22        /// <summary>
23        /// Summary description for ASTVisitor.
24        /// </summary>
25        public interface ASTVisitor
26        {
27                void visit(AST node);
28        }
29}
Note: See TracBrowser for help on using the repository browser.