Godot offers the CodeEdit node that lets users write code during runtime.
I want to:
- Offer GDScript LSP-features inside the CodeEdit
- Interpret the written code as GDScript
- Check if a class was defined within the user code
- Check if that class inherits from "Node"
How would I go about that?