8dd2e789c0
Environment now has destructor
13 lines
No EOL
185 B
C++
13 lines
No EOL
185 B
C++
#ifndef CONSTANTS_H
|
|
#define CONSTANTS_H
|
|
|
|
#define STATEMENT 200
|
|
#define CALLFUNC 201
|
|
|
|
class Node;
|
|
|
|
// Share the line number between files
|
|
extern int linenum;
|
|
extern Node* result;
|
|
|
|
#endif |