File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 776
776
return hash ;
777
777
} ;
778
778
779
- // hash2 is a faster creator for hashes that just use symbols and
780
- // strings as keys. The map and keys array can be constructed at
781
- // compile time, so they are just added here by the constructor
782
- // function
779
+ /*
780
+ * hash2 is a faster creator for hashes that just use symbols and
781
+ * strings as keys. The map and keys array can be constructed at
782
+ * compile time, so they are just added here by the constructor
783
+ * function
784
+ */
783
785
Opal . hash2 = function ( keys , map ) {
784
786
var hash = new Opal . Hash . _alloc ;
785
787
789
791
return hash ;
790
792
} ;
791
793
794
+ /*
795
+ * Create a new range instance with first and last values, and whether the
796
+ * range excludes the last value.
797
+ */
792
798
Opal . range = function ( first , last , exc ) {
793
799
var range = new Opal . Range . _alloc ;
794
800
range . begin = first ;
You can’t perform that action at this time.
0 commit comments