summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--eo_tokenizer.rl10
1 files changed, 5 insertions, 5 deletions
diff --git a/eo_tokenizer.rl b/eo_tokenizer.rl
index e2d5f3e..aebf832 100644
--- a/eo_tokenizer.rl
+++ b/eo_tokenizer.rl
@@ -124,7 +124,7 @@ _eo_tokenizer_class_get(Eo_Tokenizer *toknz, char *p)
write data;
- # TOKENIZE CLASS
+###### TOKENIZE CLASS
action end_class_comment {
if (toknz->tmp.kls->comment != NULL)
@@ -138,7 +138,7 @@ _eo_tokenizer_class_get(Eo_Tokenizer *toknz, char *p)
}
action begin_properties {
- INF(" begin propeties");
+ INF(" begin properties");
toknz->current_nesting++;
/* fgoto tokenize_properties; */
}
@@ -150,8 +150,8 @@ _eo_tokenizer_class_get(Eo_Tokenizer *toknz, char *p)
}
action end_class {
- INF("end class:%s", toknz->tmp.kls->name);
- toknz->classes= eina_list_append(toknz->classes, toknz->tmp.kls);
+ INF("end class: %s", toknz->tmp.kls->name);
+ toknz->classes = eina_list_append(toknz->classes, toknz->tmp.kls);
toknz->tmp.kls = NULL;
toknz->current_nesting--;
fgoto main;
@@ -175,7 +175,7 @@ _eo_tokenizer_class_get(Eo_Tokenizer *toknz, char *p)
any => show_error;
*|;
- # TOP LEVEL
+###### TOP LEVEL
action begin_class {
INF("begin class: %s", toknz->tmp.kls->name);