diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-11-23 03:05:05 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2013-11-23 03:05:05 +0100 |
commit | 013625545c75dd63e62dc4470b5b90ac428e735d (patch) | |
tree | 60aad636287671f5a1a2ed122de26c1dd19a6b6c /data | |
download | eo_tokenizer-013625545c75dd63e62dc4470b5b90ac428e735d.zip eo_tokenizer-013625545c75dd63e62dc4470b5b90ac428e735d.tar.gz |
initial commit: support C/C++ comments
Diffstat (limited to 'data')
-rw-r--r-- | data/comments.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/data/comments.c b/data/comments.c new file mode 100644 index 0000000..5fd0216 --- /dev/null +++ b/data/comments.c @@ -0,0 +1,20 @@ +/* comment:1-1 */
+
+/*
+ comment:3-4 */
+/*
+ * comment:5-7
+ */
+
+// comment:9-9
+
+ /*
+comment:11-15
+ *
+ *
+ * *//*comment 15-16
+*/
+
+ Evas_object {
+ inherits { Eo_Base, Evas_Common_Interface }
+}
|