src/parser.h

changeset 74
007fbadfa7f9
parent 73
1ee9b312dc18
child 75
bf8c57437231
--- a/src/parser.h	Sat Jan 11 22:36:31 2014 +0200
+++ b/src/parser.h	Mon Jan 13 00:15:38 2014 +0200
@@ -88,21 +88,21 @@
 // Mark types
 enum marktype_e
 {
-	MARKTYPE_LABEL,
-	MARKTYPE_IF,
-	MARKTYPE_INTERNAL, // internal structures
+	e_label_mark,
+	e_if_mark,
+	e_internal_mark, // internal structures
 };
 
 // Block types
 enum scopetype_e
 {
-	SCOPETYPE_UNKNOWN,
-	SCOPETYPE_IF,
-	SCOPETYPE_WHILE,
-	SCOPETYPE_FOR,
-	SCOPETYPE_DO,
-	SCOPETYPE_SWITCH,
-	SCOPETYPE_ELSE,
+	e_unknown_scope,
+	e_if_scope,
+	e_while_scope,
+	e_for_scope,
+	e_do_scope,
+	e_switch_scope,
+	e_else_scope,
 };
 
 // ============================================================================

mercurial