File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -543,6 +543,11 @@ P6num.prototype.boxed_primitive = 2;
543
543
544
544
P6num . prototype . allocate = basic_allocate ;
545
545
P6num . prototype . basic_constructor = basic_constructor ;
546
+ P6num . prototype . type_object_for = basic_type_object_for ;
547
+
548
+ // TODO: handle float/bits stuff
549
+ P6num . prototype . compose = noop_compose ;
550
+
546
551
P6num . prototype . create_obj_constructor = function ( STable ) {
547
552
var c = this . basic_constructor ( STable ) ;
548
553
@@ -572,8 +577,10 @@ function P6str() {
572
577
573
578
P6str . prototype . boxed_primitive = 3 ;
574
579
580
+ P6str . prototype . type_object_for = basic_type_object_for ;
575
581
P6str . prototype . allocate = basic_allocate ;
576
582
P6str . prototype . basic_constructor = basic_constructor ;
583
+ P6str . prototype . compose = noop_compose ;
577
584
P6str . prototype . create_obj_constructor = function ( STable ) {
578
585
var c = this . basic_constructor ( STable ) ;
579
586
You can’t perform that action at this time.
0 commit comments