added regexp helper struct
authorkramm <kramm>
Tue, 6 Jan 2009 21:36:34 +0000 (21:36 +0000)
committerkramm <kramm>
Tue, 6 Jan 2009 21:36:34 +0000 (21:36 +0000)
lib/as3/tokenizer.h

index 44ffd17..d48152b 100644 (file)
@@ -61,6 +61,10 @@ typedef struct _for_start {
     char*name;
     char each;
 } for_start_t;
+typedef struct _regexp {
+    char*pattern;
+    char*options;
+} regexp_t;
 
 extern char start_of_expression;