sml
sml copied to clipboard
:racehorse: [pph] Apply `__is_same` builtin if available
Problem:
is_samecan be implemented in terms of__is_samebuiltin which makes it faster to compile as it doesn't require class instantiation.
Solution:
- Apply
__is_samebuiltin if available.