source: trunk/yao/share/antlr-2.7.7/examples/java/pascal/Constant.java @ 1

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

Initial import of YAO sources

File size: 219 bytes
Line 
1/** A "variable" defined in the CONST section. It has a value
2 *  defined at compile time and an associated type.
3 */
4public class Constant extends Variable {
5        public Constant(String name) {
6                super(name);
7        }
8}
Note: See TracBrowser for help on using the repository browser.