src/parser.h

changeset 138
a426c1039655
parent 135
8b9132fea327
child 139
cf11621ae422
--- a/src/parser.h	Tue Jul 22 04:40:33 2014 +0300
+++ b/src/parser.h	Tue Jul 22 12:57:46 2014 +0300
@@ -39,7 +39,8 @@
 class Lexer;
 class Variable;
 
-// ============================================================================
+// _________________________________________________________________________________________________
+//
 // Mark types
 //
 named_enum MarkType : char
@@ -49,7 +50,8 @@
 	MARK_Internal, // internal structures
 };
 
-// ============================================================================
+// _________________________________________________________________________________________________
+//
 // Scope types
 //
 named_enum ScopeType : char
@@ -82,7 +84,7 @@
 	WRITE_Constexpr,	// const variable whose value is known to compiler
 };
 
-// =============================================================================
+// _________________________________________________________________________________________________
 //
 // Parser mode: where is the parser at?
 //
@@ -95,7 +97,7 @@
 	Onexit,		// inside onexit
 };
 
-// ============================================================================
+// _________________________________________________________________________________________________
 //
 struct Variable
 {
@@ -114,7 +116,7 @@
 	}
 };
 
-// ============================================================================
+// _________________________________________________________________________________________________
 //
 struct CaseInfo
 {
@@ -123,7 +125,7 @@
 	DataBuffer*		data;
 };
 
-// ============================================================================
+// _________________________________________________________________________________________________
 //
 // Meta-data about scopes
 //
@@ -145,7 +147,7 @@
 	List<Variable*>				globalArrays;
 };
 
-// ============================================================================
+// _________________________________________________________________________________________________
 //
 class BotscriptParser
 {

mercurial