File: SimpleTreeParser.h

package info (click to toggle)
pccts 1.33MR33-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,212 kB
  • ctags: 5,280
  • sloc: ansic: 46,051; cpp: 3,234; makefile: 957
file content (25 lines) | stat: -rw-r--r-- 560 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef SimpleTreeParser_h
#define SimpleTreeParser_h
/*
 * S O R C E R E R  T r a n s l a t i o n  H e a d e r
 *
 * SORCERER Developed by Terence Parr, Aaron Sawdey, & Gary Funck
 * Parr Research Corporation, Intrepid Technology, University of Minnesota
 * 1992-1994
 * SORCERER Version 1.00B15
 */
#include "STreeParser.h"

#include "tokens.h"
#include "AST.h"

class SimpleTreeParser : public STreeParser {
protected:
public:
	SimpleTreeParser();

	void gen_stat(SORASTBase **_root);
	void gen_expr(SORASTBase **_root);
};

#endif /* SimpleTreeParser_h */