diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-03 04:33:21 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-03 04:33:21 -0800 |
| commit | f2a39ef4103a1dc44c38ac36e23cc849b9bc61dc (patch) | |
| tree | d6dd80c6a5421c0b6b0f51182d2011f10ffd2e89 /src | |
| parent | afa5b268265c2dd65e14142baade7787e7259f58 (diff) | |
| parent | 1a7bb9dfa605d0fa29152a43536e7690c3ce5523 (diff) | |
| download | mruby-f2a39ef4103a1dc44c38ac36e23cc849b9bc61dc.tar.gz mruby-f2a39ef4103a1dc44c38ac36e23cc849b9bc61dc.zip | |
Merge pull request #930 from kaishuu0123/cleanup-parse.y
cleanup: delete commented out match_op() from parse.y
Diffstat (limited to 'src')
| -rw-r--r-- | src/parse.y | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/parse.y b/src/parse.y index 7bca4a4d6..db3445d84 100644 --- a/src/parse.y +++ b/src/parse.y @@ -757,15 +757,6 @@ call_bin_op(parser_state *p, node *recv, char *m, node *arg1) return new_call(p, recv, intern(m), list1(list1(arg1))); } -/* -// (:match (a . b)) -static node* -match_op(parser_state *p, node *a, node *b) -{ - return cons((node*)NODE_MATCH, cons((node*)a, (node*)b)); -} -*/ - static void args_with_block(parser_state *p, node *a, node *b) { |
