rubinius-compiler 3.22 → 3.23

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 778517e9b5f8ab534f5378f40acf87d6ef22bf3a
4
- data.tar.gz: 9cda1a93005d7907058f8060c74c065ecc514910
3
+ metadata.gz: 2c12d7e0caf3666a939196b5e2b7f44624ff3556
4
+ data.tar.gz: 8a67b21ebe882ccec2231fc8913b0cc6ecc7dd06
5
5
  SHA512:
6
- metadata.gz: edfee94586c71bcd0a440deaad201b7ab8b28c5d90be10d96f084f2351a6422745673daac9a71c7df043bcd03cfcdadc65b163e41f9db628da7f82d38b328c34
7
- data.tar.gz: 6d209408b3eab829fab1e9b4bfe033c973aeff5a4a7a7ff4a7791ded552ed7f0a727a935588e3d515466eae319f7731b1ed61826e7595b63ab6aa474abf5e41a
6
+ metadata.gz: a6b49a1abc56b74867a05aeaa2786ec1f5147b18cf39ed7c09eb67234b2a9ec0360b6f28657bba25a2a8135ffb785fa07a7912eae82d8e047bf61bd197c6a19c
7
+ data.tar.gz: 783c60d628594eb0d3a0f6ad113ff8e3da395bda3e670a2fa021b8835c84721edb9e2c4e7b658c40d9caa7d962ea99e4ff0bf3ec61e44455c8ef35269eaf1b6e
@@ -810,5 +810,154 @@ module CodeTools
810
810
  @instruction = 98
811
811
  end
812
812
 
813
+ def p_any(arg1)
814
+ @stream << 99 << arg1
815
+ @ip += 2
816
+ @instruction = 99
817
+ end
818
+
819
+ def p_call(arg1)
820
+ @stream << 100 << arg1
821
+ @ip += 2
822
+ @instruction = 100
823
+ end
824
+
825
+ def p_char(arg1)
826
+ @stream << 101 << arg1
827
+ @ip += 2
828
+ @instruction = 101
829
+ end
830
+
831
+ def p_char_set(arg1)
832
+ @stream << 102 << arg1
833
+ @ip += 2
834
+ @instruction = 102
835
+ end
836
+
837
+ def p_choice(arg1, arg2)
838
+ @stream << 103 << arg1 << arg2
839
+ @ip += 3
840
+ @instruction = 103
841
+ end
842
+
843
+ def p_commit(arg1)
844
+ @stream << 104 << arg1
845
+ @ip += 2
846
+ @instruction = 104
847
+ end
848
+
849
+ def p_commit_back(arg1)
850
+ @stream << 105 << arg1
851
+ @ip += 2
852
+ @instruction = 105
853
+ end
854
+
855
+ def p_commit_partial(arg2)
856
+ @stream << 106 << arg1
857
+ @ip += 2
858
+ @instruction = 106
859
+ end
860
+
861
+ def p_end
862
+ @stream << 107
863
+ @ip += 1
864
+ @instruction = 107
865
+ end
866
+
867
+ def p_fail
868
+ @stream << 108
869
+ @ip += 1
870
+ @instruction = 108
871
+ end
872
+
873
+ def p_fail_twice
874
+ @stream << 109
875
+ @ip += 1
876
+ @instruction = 109
877
+ end
878
+
879
+ def p_jump(arg1)
880
+ @stream << 110 << arg1
881
+ @ip += 2
882
+ @instruction = 110
883
+ end
884
+
885
+ def p_return
886
+ @stream << 111
887
+ @ip += 1
888
+ @instruction = 111
889
+ end
890
+
891
+ def p_span(arg1)
892
+ @stream << 112 << arg1
893
+ @ip += 2
894
+ @instruction = 112
895
+ end
896
+
897
+ def p_test_any(arg1, arg2)
898
+ @stream << 113 << arg1 << arg2
899
+ @ip += 3
900
+ @instruction = 113
901
+ end
902
+
903
+ def p_test_char(arg1, arg2)
904
+ @stream << 114 << arg1 << arg2
905
+ @ip += 3
906
+ @instruction = 114
907
+ end
908
+
909
+ def p_test_char_set(arg1, arg2)
910
+ @stream << 115 << arg1 << arg2
911
+ @ip += 3
912
+ @instruction = 115
913
+ end
914
+
915
+ def p_init(arg1, arg2)
916
+ @stream << 116 << arg1 << arg2
917
+ @ip += 3
918
+ @instruction = 116
919
+ end
920
+
921
+ def m_bytes(arg1)
922
+ @stream << 117 << arg1
923
+ @ip += 2
924
+ @instruction = 117
925
+ end
926
+
927
+ def m_counter(arg1)
928
+ @stream << 118 << arg1
929
+ @ip += 2
930
+ @instruction = 118
931
+ end
932
+
933
+ def m_sum(arg1, arg2)
934
+ @stream << 119 << arg1 << arg2
935
+ @ip += 3
936
+ @instruction = 119
937
+ end
938
+
939
+ def m_value(arg1, arg2)
940
+ @stream << 120 << arg1 << arg2
941
+ @ip += 3
942
+ @instruction = 120
943
+ end
944
+
945
+ def m_time_stamp(arg1)
946
+ @stream << 121 << arg1
947
+ @ip += 2
948
+ @instruction = 121
949
+ end
950
+
951
+ def m_timer_start(arg1)
952
+ @stream << 122 << arg1
953
+ @ip += 2
954
+ @instruction = 122
955
+ end
956
+
957
+ def m_timer_stop(arg1)
958
+ @stream << 123 << arg1
959
+ @ip += 2
960
+ @instruction = 123
961
+ end
813
962
  end
814
963
  end
@@ -1,5 +1,5 @@
1
1
  module CodeTools
2
2
  class Compiler
3
- VERSION = "3.22"
3
+ VERSION = "3.23"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubinius-compiler
3
3
  version: !ruby/object:Gem::Version
4
- version: '3.22'
4
+ version: '3.23'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Shirai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-16 00:00:00.000000000 Z
11
+ date: 2018-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler