summaryrefslogtreecommitdiffhomepage
path: root/src/compile.h
diff options
context:
space:
mode:
authorroco <[email protected]>2012-04-30 14:29:19 -0700
committerroco <[email protected]>2012-04-30 14:29:19 -0700
commit4ec6d41f16e20fadc6f4c0de363a26a59a1a13fb (patch)
tree40539734fd32004652f7c98e2b88921aa57c8b25 /src/compile.h
parent6b739d91735fe83bd29f6ca8505c00d530e85584 (diff)
downloadmruby-4ec6d41f16e20fadc6f4c0de363a26a59a1a13fb.tar.gz
mruby-4ec6d41f16e20fadc6f4c0de363a26a59a1a13fb.zip
rm whitespace
Diffstat (limited to 'src/compile.h')
-rw-r--r--src/compile.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/compile.h b/src/compile.h
index 6e6975cbf..9d58acaa0 100644
--- a/src/compile.h
+++ b/src/compile.h
@@ -1,6 +1,6 @@
/*
** compile.h - mruby parser
-**
+**
** See Copyright Notice in mruby.h
*/
@@ -17,17 +17,17 @@ typedef struct mrb_ast_node {
#include <stdio.h>
enum mrb_lex_state_enum {
- EXPR_BEG, /* ignore newline, +/- is a sign. */
- EXPR_END, /* newline significant, +/- is an operator. */
- EXPR_ENDARG, /* ditto, and unbound braces. */
- EXPR_ENDFN, /* ditto, and unbound braces. */
- EXPR_ARG, /* newline significant, +/- is an operator. */
- EXPR_CMDARG, /* newline significant, +/- is an operator. */
- EXPR_MID, /* newline significant, +/- is an operator. */
- EXPR_FNAME, /* ignore newline, no reserved words. */
- EXPR_DOT, /* right after `.' or `::', no reserved words. */
- EXPR_CLASS, /* immediate after `class', no here document. */
- EXPR_VALUE, /* alike EXPR_BEG but label is disallowed. */
+ EXPR_BEG, /* ignore newline, +/- is a sign. */
+ EXPR_END, /* newline significant, +/- is an operator. */
+ EXPR_ENDARG, /* ditto, and unbound braces. */
+ EXPR_ENDFN, /* ditto, and unbound braces. */
+ EXPR_ARG, /* newline significant, +/- is an operator. */
+ EXPR_CMDARG, /* newline significant, +/- is an operator. */
+ EXPR_MID, /* newline significant, +/- is an operator. */
+ EXPR_FNAME, /* ignore newline, no reserved words. */
+ EXPR_DOT, /* right after `.' or `::', no reserved words. */
+ EXPR_CLASS, /* immediate after `class', no here document. */
+ EXPR_VALUE, /* alike EXPR_BEG but label is disallowed. */
EXPR_MAX_STATE
};