-
Notifications
You must be signed in to change notification settings - Fork 4
Labels
enhancementNew feature or requestNew feature or request
Description
Problem Description:
The Rosetta runtime allows functions to be marked with [codeImplementation], indicating logic provided by the host language. The Python generator does not yet emit the syntax to delegate these calls to Python external implementations.
Steps to Reproduce:
Example Rune code: import-overlap.rosetta
func MyFunc:
[codeImplementation]
output:
result int (1..1)
- Define a Rosetta function with the
[codeImplementation]annotation. - Attempt to generate Python code for this function.
Expected Result:
The generator should emit a call to a standard Python registry or dispatcher where the user can provide the implementation.
Actual Result:
The generator produces an empty body or fails to map the implementation.
Additional Context:
Critical for CDM validation functions like ValidateFpMLCodingSchemeDomain.
Reactions are currently unavailable
Sub-issues
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request