Commit cd7b78c
Fix NotImplementedError in SigTyProcNode for RBS proc types
Previously, using proc types in RBS files (e.g., ^() -> Integer) would
raise NotImplementedError when TypeProf tried to process them through
SigTyProcNode#covariant_vertex0.
This commit:
- Adds initialize method to SigTyProcNode to properly parse RBS::Types::Proc
- Implements covariant_vertex0 and contravariant_vertex0 methods
- Wraps RBS::Types::Function in RBS::MethodType for compatibility
- Adds comprehensive test scenarios for proc type handling
The implementation currently returns the base Proc type without detailed
function signature information, which can be enhanced in the future.
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 82cf54b commit cd7b78c
2 files changed
Lines changed: 99 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
628 | 628 | | |
629 | 629 | | |
630 | 630 | | |
| 631 | + | |
| 632 | + | |
| 633 | + | |
| 634 | + | |
| 635 | + | |
| 636 | + | |
| 637 | + | |
| 638 | + | |
| 639 | + | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | + | |
| 644 | + | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | + | |
| 649 | + | |
631 | 650 | | |
632 | | - | |
| 651 | + | |
| 652 | + | |
| 653 | + | |
633 | 654 | | |
634 | 655 | | |
635 | 656 | | |
636 | | - | |
| 657 | + | |
| 658 | + | |
| 659 | + | |
637 | 660 | | |
638 | 661 | | |
639 | 662 | | |
640 | | - | |
| 663 | + | |
641 | 664 | | |
642 | 665 | | |
643 | 666 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
0 commit comments