-
Beta Was this translation helpful? Give feedback.
Answered by
msujew
Mar 19, 2024
Replies: 1 comment 5 replies
-
|
@zrwsmd Can you provide a reproducible example? It works in all of our projects. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



The module hasn't been properly defined:
export function createStatemachineModule( context: StatemachineModuleContext ): Module<StatemachineServices, PartialLangiumServices & StatemachineAddedServices> { return { shared: () => context.shared, validation: { - StatemachineValidator: new StatemachineValidator() + StatemachineValidator: () => new StatemachineValidator() } }; }