rubinius-melbourne 3.10 → 3.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/rubinius/code/melbourne/defs/keywords +0 -2
- data/ext/rubinius/code/melbourne/grammar.cpp +4092 -4229
- data/ext/rubinius/code/melbourne/grammar.y +8 -77
- data/ext/rubinius/code/melbourne/lex.c.blt +59 -60
- data/ext/rubinius/code/melbourne/node.hpp +0 -3
- data/ext/rubinius/code/melbourne/node_types.cpp +35 -41
- data/ext/rubinius/code/melbourne/node_types.hpp +0 -3
- data/ext/rubinius/code/melbourne/node_types.rb +0 -3
- data/ext/rubinius/code/melbourne/symbols.cpp +0 -6
- data/ext/rubinius/code/melbourne/symbols.hpp +0 -3
- data/ext/rubinius/code/melbourne/visitor.cpp +0 -28
- data/lib/rubinius/code/melbourne/version.rb +1 -1
- metadata +2 -2
@@ -33,9 +33,7 @@ namespace MELBOURNE {
|
|
33
33
|
extern ID rb_sData;
|
34
34
|
extern ID rb_sDefined;
|
35
35
|
extern ID rb_sDefn;
|
36
|
-
extern ID rb_sDefnm;
|
37
36
|
extern ID rb_sDefs;
|
38
|
-
extern ID rb_sDefsm;
|
39
37
|
extern ID rb_sDot2;
|
40
38
|
extern ID rb_sDot3;
|
41
39
|
extern ID rb_sDRegx;
|
@@ -55,7 +53,6 @@ namespace MELBOURNE {
|
|
55
53
|
extern ID rb_sFloat;
|
56
54
|
extern ID rb_sFor;
|
57
55
|
extern ID rb_sFun;
|
58
|
-
extern ID rb_sFunm;
|
59
56
|
extern ID rb_sGAsgn;
|
60
57
|
extern ID rb_sGVar;
|
61
58
|
extern ID rb_sHash;
|
@@ -670,15 +670,6 @@ namespace MELBOURNE {
|
|
670
670
|
tree = rb_funcall(ptp, rb_sFun, 3, line, ID2SYM(node->nd_mid), body);
|
671
671
|
break;
|
672
672
|
}
|
673
|
-
case NODE_FUNM: {
|
674
|
-
VALUE body = Qnil;
|
675
|
-
|
676
|
-
if (node->nd_defn) {
|
677
|
-
body = process_parse_tree(parser_state, ptp, node->nd_defn, locals);
|
678
|
-
}
|
679
|
-
tree = rb_funcall(ptp, rb_sFunm, 3, line, ID2SYM(node->nd_mid), body);
|
680
|
-
break;
|
681
|
-
}
|
682
673
|
case NODE_DEFN: {
|
683
674
|
VALUE body = Qnil;
|
684
675
|
|
@@ -688,15 +679,6 @@ namespace MELBOURNE {
|
|
688
679
|
tree = rb_funcall(ptp, rb_sDefn, 3, line, ID2SYM(node->nd_mid), body);
|
689
680
|
break;
|
690
681
|
}
|
691
|
-
case NODE_DEFNM: {
|
692
|
-
VALUE body = Qnil;
|
693
|
-
|
694
|
-
if (node->nd_defn) {
|
695
|
-
body = process_parse_tree(parser_state, ptp, node->nd_defn, locals);
|
696
|
-
}
|
697
|
-
tree = rb_funcall(ptp, rb_sDefnm, 3, line, ID2SYM(node->nd_mid), body);
|
698
|
-
break;
|
699
|
-
}
|
700
682
|
case NODE_DEFS: {
|
701
683
|
VALUE recv = Qnil, body = Qnil;
|
702
684
|
|
@@ -707,16 +689,6 @@ namespace MELBOURNE {
|
|
707
689
|
tree = rb_funcall(ptp, rb_sDefs, 4, line, recv, ID2SYM(node->nd_mid), body);
|
708
690
|
break;
|
709
691
|
}
|
710
|
-
case NODE_DEFSM: {
|
711
|
-
VALUE recv = Qnil, body = Qnil;
|
712
|
-
|
713
|
-
if (node->nd_defn) {
|
714
|
-
recv = process_parse_tree(parser_state, ptp, node->nd_recv, locals);
|
715
|
-
body = process_parse_tree(parser_state, ptp, node->nd_defn, locals);
|
716
|
-
}
|
717
|
-
tree = rb_funcall(ptp, rb_sDefsm, 4, line, recv, ID2SYM(node->nd_mid), body);
|
718
|
-
break;
|
719
|
-
}
|
720
692
|
case NODE_CLASS: {
|
721
693
|
VALUE name, super = Qnil;
|
722
694
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubinius-melbourne
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '3.
|
4
|
+
version: '3.11'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Shirai
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: redcard
|