Added GLOBAL_DECL CAstNode for the python global statement.

This commit is contained in:
Sifis Lagouvardos 2018-09-12 18:21:00 +03:00
parent b32704b8a3
commit 9ce10ab5b9
1 changed files with 1 additions and 0 deletions

View File

@ -113,6 +113,7 @@ public interface CAstNode {
public static final int ECHO = 25;
public static final int YIELD_STMT = 26;
public static final int FORIN_LOOP = 27;
public static final int GLOBAL_DECL = 28;
// expression kinds
public static final int FUNCTION_EXPR = 100;