diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-02-28 10:32:40 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-02-28 10:32:40 +0900 |
| commit | 89eac4f59dc128041811884773f348942095dea9 (patch) | |
| tree | ff5b183383c17faf053d5cbe57e7354251a57f77 /mrbgems/mruby-compiler/core/parse.y | |
| parent | 7db0786abdd243ba031e24683f6140f410b65588 (diff) | |
| download | mruby-89eac4f59dc128041811884773f348942095dea9.tar.gz mruby-89eac4f59dc128041811884773f348942095dea9.zip | |
Update codegen.c comments
Diffstat (limited to 'mrbgems/mruby-compiler/core/parse.y')
| -rw-r--r-- | mrbgems/mruby-compiler/core/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-compiler/core/parse.y b/mrbgems/mruby-compiler/core/parse.y index 5be8bdc7f..2b34e4b7f 100644 --- a/mrbgems/mruby-compiler/core/parse.y +++ b/mrbgems/mruby-compiler/core/parse.y @@ -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) { |
