Update codegen.c comments

This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-02-28 10:32:40 +09:00
parent 7db0786abd
commit 89eac4f59d
+2 -2
View File
@@ -768,14 +768,14 @@ new_dsym(parser_state *p, node *a)
return cons((node*)NODE_DSYM, new_dstr(p, a));
}
/* (:str . (a . a)) */
/* (:regx . (s . (opt . enc))) */
static node*
new_regx(parser_state *p, const char *p1, const char* p2, const char* p3)
{
return cons((node*)NODE_REGX, cons((node*)p1, cons((node*)p2, (node*)p3)));
}
/* (:dregx . a) */
/* (:dregx . (a . b)) */
static node*
new_dregx(parser_state *p, node *a, node *b)
{