@@ -442,7 +442,7 @@ static PMC * get_attribute(PARROT_INTERP, PMC *obj, PMC *class_handle, STRING *n
442
442
443
443
/* Fall back to the spill storage. */
444
444
Parrot_ex_throw_from_c_args (interp , NULL , EXCEPTION_INVALID_OPERATION ,
445
- "P6opaque attributes NYFI 1 (attribute '%Ss')" , name );
445
+ "P6opaque attributes NYFI 1 (attribute '%Ss' in get_attribute )" , name );
446
446
}
447
447
static INTVAL get_attribute_int (PARROT_INTERP , PMC * obj , PMC * class_handle , STRING * name , INTVAL hint ) {
448
448
P6opaqueInstance * instance = (P6opaqueInstance * )PMC_data (obj );
@@ -480,7 +480,7 @@ static FLOATVAL get_attribute_num(PARROT_INTERP, PMC *obj, PMC *class_handle, ST
480
480
481
481
/* Fall back to the spill storage. */
482
482
Parrot_ex_throw_from_c_args (interp , NULL , EXCEPTION_INVALID_OPERATION ,
483
- "P6opaque attributes NYFI 2 (attribute '%Ss')" , name );
483
+ "P6opaque attributes NYFI 2 (attribute '%Ss' in get_attribute_num )" , name );
484
484
}
485
485
static STRING * get_attribute_str (PARROT_INTERP , PMC * obj , PMC * class_handle , STRING * name , INTVAL hint ) {
486
486
P6opaqueInstance * instance = (P6opaqueInstance * )PMC_data (obj );
@@ -501,7 +501,7 @@ static STRING * get_attribute_str(PARROT_INTERP, PMC *obj, PMC *class_handle, ST
501
501
502
502
/* Fall back to the spill storage. */
503
503
Parrot_ex_throw_from_c_args (interp , NULL , EXCEPTION_INVALID_OPERATION ,
504
- "P6opaque attributes NYFI 3 (attribute '%Ss')" , name );
504
+ "P6opaque attributes NYFI 3 (attribute '%Ss' in get_attribute_str )" , name );
505
505
}
506
506
507
507
/* Binds the given value to the specified attribute. */
@@ -524,7 +524,7 @@ static void bind_attribute(PARROT_INTERP, PMC *obj, PMC *class_handle, STRING *n
524
524
525
525
/* Fall back to the spill storage. */
526
526
Parrot_ex_throw_from_c_args (interp , NULL , EXCEPTION_INVALID_OPERATION ,
527
- "P6opaque attributes NYFI 4 (attribute '%Ss' not found )" , name );
527
+ "P6opaque attributes NYFI 4 (attribute '%Ss' in bind_attribute )" , name );
528
528
}
529
529
static void bind_attribute_int (PARROT_INTERP , PMC * obj , PMC * class_handle , STRING * name , INTVAL hint , INTVAL value ) {
530
530
P6opaqueInstance * instance = (P6opaqueInstance * )PMC_data (obj );
@@ -545,7 +545,7 @@ static void bind_attribute_int(PARROT_INTERP, PMC *obj, PMC *class_handle, STRIN
545
545
546
546
/* Fall back to the spill storage. */
547
547
Parrot_ex_throw_from_c_args (interp , NULL , EXCEPTION_INVALID_OPERATION ,
548
- "P6opaque attributes NYFI 5" );
548
+ "P6opaque attributes NYFI 5 (attribute '%s' in bind_attribute_int) " );
549
549
}
550
550
static void bind_attribute_num (PARROT_INTERP , PMC * obj , PMC * class_handle , STRING * name , INTVAL hint , FLOATVAL value ) {
551
551
P6opaqueInstance * instance = (P6opaqueInstance * )PMC_data (obj );
@@ -566,7 +566,7 @@ static void bind_attribute_num(PARROT_INTERP, PMC *obj, PMC *class_handle, STRIN
566
566
567
567
/* Fall back to the spill storage. */
568
568
Parrot_ex_throw_from_c_args (interp , NULL , EXCEPTION_INVALID_OPERATION ,
569
- "P6opaque attributes NYFI 6" );
569
+ "P6opaque attributes NYFI 6 (attribute '%s' in bind_attribute_num)" , name );
570
570
}
571
571
static void bind_attribute_str (PARROT_INTERP , PMC * obj , PMC * class_handle , STRING * name , INTVAL hint , STRING * value ) {
572
572
P6opaqueInstance * instance = (P6opaqueInstance * )PMC_data (obj );
@@ -587,7 +587,7 @@ static void bind_attribute_str(PARROT_INTERP, PMC *obj, PMC *class_handle, STRIN
587
587
588
588
/* Fall back to the spill storage. */
589
589
Parrot_ex_throw_from_c_args (interp , NULL , EXCEPTION_INVALID_OPERATION ,
590
- "P6opaque attributes NYFI 7" );
590
+ "P6opaque attributes NYFI 7 (attribute '%s' in bind_attribute_str)" , name );
591
591
}
592
592
593
593
/* Gets the hint for the given attribute ID. */
0 commit comments