source: trunk/yao/share/antlr-2.7.7/examples/csharp/heteroAST/CalcAST.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: 328 bytes
Line 
1using System;
2using antlr;
3using antlr.collections;
4
5public abstract class CalcAST : antlr.BaseAST {
6        public abstract int Value();
7
8        // satisfy abstract methods from BaseAST
9        public override void initialize(int t, String txt) {
10        }
11        public override void initialize(AST t) {
12        }
13        public override void initialize(IToken tok) {
14        }
15}
Note: See TracBrowser for help on using the repository browser.