-
-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement raw javascript language #32
base: main
Are you sure you want to change the base?
Implement raw javascript language #32
Conversation
463fd48
to
6353d7e
Compare
Hi, I’m not sure whether these changes are good for the design goal without side effects.
I prefer to temporarily suspend this PR, and deliberate over it again after GodotJS (the expected features/implementation) is more complete. |
I'm fine with your opinion, I will maintain the patch series because I will use it, and you can merge it in the future if you want. if you have suggestion for improvement or change let me know. Best regards |
6353d7e
to
e3bd382
Compare
e3bd382
to
cb945fa
Compare
Hello,
This patch suite add GodotJavaScript script language. JS scripts work the same as TS scripts and they share the same javascript environment, but they do not need to be compiled using "tsc", i.e. they are loaded in-place as they are.
The code are mostly shared by both ScriptLanguage, created classes are written to override names and file extensions.
Best regards