diff options
Diffstat (limited to 'src/parse/expr.cpp')
-rw-r--r-- | src/parse/expr.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/parse/expr.cpp b/src/parse/expr.cpp index 61678eea..32fd171e 100644 --- a/src/parse/expr.cpp +++ b/src/parse/expr.cpp @@ -1,4 +1,14 @@ /*
+ * MRustC - Rust Compiler
+ * - By John Hodge (Mutabah/thePowersGang)
+ *
+ * parse/expr.cpp
+ * - Expression (i.e. code) parsing
+ *
+ * Start points:
+ * - Parse_ExprBlockNode : Parses a block
+ * - Parse_Stmt : Parse a single statement
+ * - Parse_Expr0 : Parse a single expression
*/
#include "parseerror.hpp"
#include "../ast/ast.hpp"
|